ccollect/tools/config-pre-0.6-to-0.6.sub.sh

21 lines
380 B
Bash
Raw Normal View History

2007-08-16 20:30:02 +00:00
#!/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"