From b80f6443b6b7b620c7272664c66ecb0b120a0998 Mon Sep 17 00:00:00 2001 From: Jari Aalto Date: Tue, 27 Jul 2004 13:29:18 +0000 Subject: Imported from ../bash-3.0.tar.gz. --- examples/scripts/fixfiles.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/scripts/fixfiles.bash') diff --git a/examples/scripts/fixfiles.bash b/examples/scripts/fixfiles.bash index 67311ee..15f3ba8 100644 --- a/examples/scripts/fixfiles.bash +++ b/examples/scripts/fixfiles.bash @@ -62,7 +62,7 @@ processdir() set +f for file in * ; do set -f - if [ "$file" != "." -a "$file" != ".." ] ; then + if [ "$file" != "." ] && [ "$file" != ".." ] ; then if [ -L "$file" ] ; then echo "skipping symlink" $file in `pwd` elif [ -d "$file" ] ; then -- cgit v1.2.3