Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I’m really curious: without cheating by using the GUI, what would be the proper way to delete such an obnoxiously-named directory? Would “$PWD/~” work?


A few ways.

rm ./~ is likely the easiest.

Another option, shell dependent, would be to turn off shell globbing.

The `GNU` version of `find` has a `-maxdepth` option so

find . -iname '~' -maxdepth 1 -exec rm {} \;

would work, but I don't like relying on `GNU` extensions.


Or just: rm "~"




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

Search: