System Grab Bag

View all TLDR pages from Linux (or from all pages)

rm

Remove files or directories. See also: rmdir. More information: https://www.gnu.org/software/coreutils/rm.
  • Remove specific files:
    rm {{path/to/file1 path/to/file2 ...}}
  • Remove specific files ignoring nonexistent ones:
    rm --force {{path/to/file1 path/to/file2 ...}}
  • Remove specific files interactively prompting before each removal:
    rm --interactive {{path/to/file1 path/to/file2 ...}}
  • Remove specific files printing info about each removal:
    rm --verbose {{path/to/file1 path/to/file2 ...}}
  • Remove specific files and directories recursively:
    rm --recursive {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.

Other Projects

This TLDR page is also found in other projects: