2008-06-19 09:35:37 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#rm-tmps.sh
|
|
|
|
#remove "foo~" temporary files left by Emacs and other editors
|
|
|
|
|
|
|
|
#This is just a helper file, since Emacs-style "foo~" files can sometimes break a
|
|
|
|
#build (files ending in ~ are considered valid shell scripts).
|
|
|
|
#If you want to build the disk image, use "lh_build" as documented at
|
|
|
|
# http://devel.cryptobox.org/wiki/DebianLiveBuild
|
|
|
|
|
2008-07-10 03:06:30 +02:00
|
|
|
find config -type f -name \*~ -exec rm --verbose -f '{}' \;
|