ccollect/tools/config-pre-0.4-to-0.4.sh
Nico Schottelius 81df2e5a21 Fix for ccollect 0.4 fixup scripts
Now using two temp-files in fixup scripts.

And reversed moving of directories.
2006-04-27 10:42:16 +02:00

30 lines
535 B
Bash
Executable file

#!/bin/sh
# Nico Schottelius
# Do Apr 27 09:13:26 CEST 2006
#
if [ $# -ne 1 ]; then
echo "$0: ccollect-configuration directory"
echo ""
echo " Fix pre 0.4 configuration directories to match 0.4 style"
echo ""
exit 23
fi
tmp=$(mktemp)
tmp2=$(mktemp)
script=$(echo $0 | sed 's/\.sh/.sub.sh/')
find "$1" -type d -name intervalls > "$tmp"
#
# reverse found data, so deepest directories are renamed first
#
tac "$tmp" > "$tmp2"
while read intervals
do
"$script" "$intervals"
done < "$tmp2"
rm -f "$tmp" "$tmp2"