nginx-sid/debian/modules/http-lua/util/retab
Christos Trochalakis 515a80bc0a mod: Normalize module locations
Use the package name to infer module location. This
will make it easier to script our maintaining tasks.
2017-10-12 10:37:22 +03:00

8 lines
84 B
Bash
Executable file

#!/bin/bash
for f in $*; do
if [ -f "$f" ]; then
vim -c retab -c x $f
fi
done