Add subscript

This commit is contained in:
Nico Schottelius 2007-08-16 22:30:02 +02:00
parent 39c4e83fbc
commit 967613b4c5
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#!/bin/sh
# Nico Schottelius, 20070816-2227
# Transfer configuration to 0.6 layout (subscript)
# Copying: GPLv3
#
if [ $# -ne 1 ]; then
echo "$0: rsync_options file"
echo ""
echo " Fix pre 0.6 configuration directories to match 0.6 style (sub)"
echo ""
exit 23
fi
tmp=$(mktemp)
for option in $(cat "$1"); do
echo "${option}" >> "${tmp}"
done
mv ${tmp} "$1"