Last month I complained about how brutal the rm
program in Linux was and how I cocked things up when I wanted to remove the autosaved backup files that jed
creates. Here's the solution...
I created a script in ~/bin/Mvbackupfiles
that looks like this:
#!/bin/sh
mv -v *~ /tmp
Now, whenever I want to clear a directory of all files like dummy.py~
or README.txt~
, I just run Mvbackupfiles
and I become a much happier and tidier person.