From 9141c377d03ea504d22e3470eb1458550a5f329c Mon Sep 17 00:00:00 2001 From: lars Date: Thu, 10 Jul 2008 01:06:30 +0000 Subject: [PATCH] avoid problems with spaces in filenames --- rm-tmps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rm-tmps.sh b/rm-tmps.sh index 7c75f25..002091a 100755 --- a/rm-tmps.sh +++ b/rm-tmps.sh @@ -7,4 +7,4 @@ #If you want to build the disk image, use "lh_build" as documented at # http://devel.cryptobox.org/wiki/DebianLiveBuild -rm --verbose -f `find config -name "*~"` +find config -type f -name \*~ -exec rm --verbose -f '{}' \;