though sticking to |uniq

This commit is contained in:
Anselm R Garbe 2008-04-09 23:32:46 +01:00
parent 7195e941c1
commit 6423288394
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ then
do
test -x "$file" && echo "$file"
done
done | sort -u > "$CACHE".$$ &&
done | sort | uniq > "$CACHE".$$ &&
mv "$CACHE".$$ "$CACHE"
fi