# # Removing "-file' filenames # # http://www.faqs.org/faqs/unix-faq/faq/part2/ # man rm # # # Secure RM ( no mistakes type ) # --------- # http://www.linuxgazette.com/issue01to08/articles.html#rm # # rm ./-file or rm -- -file # # perl -e 'unlink "-file"' # python -c 'import os; os.unlink("-file")' # # echo 'void main(){ unlink("-file"); }' > unlink.c cc -o unlink unlink.c ./unlink # # end of file