10 lines
413 B
Bash
Executable file
10 lines
413 B
Bash
Executable file
#!/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
|
|
|
|
find config -type f -name \*~ -exec rm --verbose -f '{}' \;
|