applysed: Add -follow to find command to follow links.

This commit is contained in:
Andrius Štikonas 2010-09-05 16:08:53 +03:00
parent f92f926032
commit 973aa29aa4
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 -name "*.po"`; do
for po in `find $2 -follow -name "*.po"`; do
echo -e $BLUE"$po"$ENDCOLOR
sed --file=$1 -i $po
done