Skip to main content

Command Palette

Search for a command to run...

Living in the Shell #13; rm (Delete Files/Directories)

Updated
โ€ข1 min read
Living in the Shell #13; rm (Delete Files/Directories)

rm ๐Ÿ’ฃ

Removes files or directories.

๐Ÿ’€ Removal is irreversible.

Remove a single file

rm some-file

Remove multiple files

rm first-file second-file third-file

Remove a directory -r

rm -r my-dir

Set to prompt before every removal -i

rm -ri my-dir

Set to suppress any interaction/error -f

rm -rf my-dir my-non-existing-dir

More from this blog

Babak K. Shandiz's Blog

43 posts