Replace deprecated -follow option with -L.

This commit is contained in:
Andrius Štikonas 2011-09-14 18:27:55 +03:00
parent 58c5cb9822
commit 2543bbdc82
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ if [ $# -ne 2 ]; then
usage
fi
for po in `find $2 -follow -name "*.po"`; do
for po in `find -L $2 -name "*.po"`; do
echo -e $BLUE"$po"$ENDCOLOR
sed --file=$1 -i $po
done