Skip files named *~.

SVN revision: 28339
This commit is contained in:
Kim Woelders 2007-02-13 04:05:05 +00:00
parent 2bd0da67ab
commit 634da6766c
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,8 @@ RunApps() {
if [ -x "$f" ]; then
# echo $f
case "$f" in
*~) # Assume this is crap - skip
;;
*.sh) # Scripts are executed in foreground
"$f"
;;