Making rm slightly safer


Lots of people alias rm to rm -i for the sake of safety. Another thing that helps is not typing rm -rf ./files and instead typing rm -rf files. The ./ prefix is easily mistyped, and can lead to any of the following scenarios:

  • rm -rf . / files
  • rm -rf ./ files
  • rm -rf . /files
  • rm -rf ./files

The 1st one will wipe your current directory and then try to wipe the whole computer. The next 2 wipe your current directory. Only the last one does what you want.

So why risk it? Don’t type ./. It doesn’t make the command less ambiguous anyway.

Related Posts

Just because 2 things are dual, doesn't mean they're just opposites

Boolean Algebra, Arithmetic POV

discontinuous linear functions

Continuous vs Bounded

Minimal Surfaces

November 2, 2023

NTK reparametrization

Kate from Vancouver, please email me

ChatGPT Session: Emotions, Etymology, Hyperfiniteness

Some ChatGPT Sessions