Files
freeCodeCamp/guide/english/bash/bash-rm/index.md
zerandomalt 0be97242e6 Made the formatting more consistent (#19979)
The formatting is now more consistent with the other files in the directory, also added a link to the Linux page.
2018-10-26 22:21:02 -05:00

452 B

title
title
Bash rm

Bash command: rm

Delete a File/Directory ,for example rm hello.

There are few commonly used arguments:

  • -r , means to recursively delete all the folders inside a directory.
  • -f , means to forcefully delete anything folder or file.
  • -rf , means that both arguments will be used together.

More Information: