Recursively remove a directory using Windows Terminal

The equivalent of

rm -rf <dir>

in Linux is

rm -r -force <dir>

in Windows.

For example to delete a local git repo type: rm -r -force .git

Back to bits

Comments