Xref: utzoo gnu.emacs.help:1779 comp.emacs:10564 Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!att!ucbvax!tut.cis.ohio-state.edu!unreplyable!garbage From: rich@CYGNUS.COM (K. Richard Pixley) Newsgroups: gnu.emacs.help,comp.emacs Subject: backup files to a specific place POSSIBLE? Message-ID: <9104181706.AA22809@sendai.cygnus.com> Date: 18 Apr 91 17:06:05 GMT References: Sender: daemon@tut.cis.ohio-state.edu Reply-To: rich@cygnus.com Followup-To: gnu.emacs.help Organization: Gatewayed from the GNU Project mailing list help-gnu-emacs@prep.ai.mit.edu Lines: 10 No, but I have a small shell script that might help. I use it regularly. #!/bin/sh find . -name \*~ -print -exec rm -rf {} \; find . -name \#\* -print -exec rm -rf {} \; find . -name core -print -exec rm -rf {} \; #eof