Subscribe to jjl's Blog        RSS Feed

jjl's Blog has no entries yet


Page 1 of 1

January 2021

S M T W T F S
     12
3456789
10111213141516
17181920212223
24252627282930
31      

Recent Entries

Search My Blog

1 user(s) viewing

1 Guests
0 member(s)
0 anonymous member(s)

Categories

Never add '.' to your path :(

So today was bad ... I was working in an Ubuntu environment and I was sick of typing the prefix "./" in front of my program name to run it in the terminal. I decided that I would add "." to my end of my path, that way all system calls still had precedence and I didn't have to type the annoying "./" before my program name to run it.

Everything was perfect, I was living it up and saving valuable key strokes until unix took revenge. I decided to run the "
rm" program like so

rm -r *.



I needed to recursively remove all files from a directory, but since the "." was included in my path. "rm" also looked at the ".." folder, which then started removing files from all other places of my home directory :/ Luckily I had backed up my home folder not too long ago, but let this be a valuable lesson to all - don't include "." in your path.