Use the package name to infer module location. This will make it easier to script our maintaining tasks.
8 lines
84 B
Bash
Executable file
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
|
|
|