Hacker News new | past | comments | ask | show | jobs | submit login

My friend did this...

  rm * -i 
The system response was "-i not found" or something like that.



I once discovered that apparently

  rm bob*
has completely different behavior from

  rm bob *
The above line of code successfully fixed a bug I'd been trying to find for weeks in source code in the same directory. When I rewrote it from scratch, the bug was gone.


This is certainly different. " bob* " refers to all files that start with "bob". " bob * " refers to a file named bob as well as all files.


Thank you, Donny.


rm -i is your friend


I find rm -i to be unusable because it is so annoying when you are deleting more than a couple files. It would be nice if rm -I (notice the capital) would first determine all of the files to remove, print them out and then ask if you want to delete all of those files. Instead it just says "rm: remove all arguments?" which is clearly much less annoying than having to type y for every file, but it is also mostly useless.


Zsh almost does this when using rm * :

  rm /tmp/*
  zsh: sure you want to delete all the files in /tmp [yn]?


protip: always put -i first.

I avert the problem by having rm run interactively by default:

    alias rm='rm -i'
    alias cp='cp -i'
    alias mv='mv -i'

http://aniggler.tumblr.com/post/44530262158/the-first-thing-...


Until one day, lulled into a false sense of security, you find yourself on a system without these aliases…


I usually don't alias the command itself; that's bad form. It limits what you can do and screws you when you are using an environment without your alias when you forget it. Live and learn.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: