Forrest logo
back to context overview

rm

List of commands for rm:

  • rm:ai:11ba8 How do I delete all files?
    $ rm -rf /path/to/${directory}*
    try on your machine
    explain this command
  • rm:ai:1a9c5 This command is used to delete a file in Linux.
    $ rm file
    try on your machine
    explain this command
  • rm:ai:2c379 Remove the apt repository by deleting the sources.list file
    $ rm /etc/apt/sources.list
    try on your machine
    explain this command
  • rm:ai:32e94 Cum Č™terg un fisier din documente?
    $ rm /path/to/documente/fisier.txt
    try on your machine
    explain this command
  • rm:ai:330dd How to delete anything belonging to fred?
    $ rm -rf /Users/Fred
    try on your machine
    explain this command
  • rm:ai:7043f How to delete a file with the name robots.txt
    $ rm robots.txt
    try on your machine
    explain this command
  • rm:ai:85e2c Deletes all files ending with .nfo in the specified folder
    $ rm /path/to/folder/*.nfo
    try on your machine
    explain this command
  • rm:ai:a9cea Linux rm 6.11.0-18-generic #18-Ubuntu SMP PREEMPT_DYNAMIC Fri Feb 7 22:34:25 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux
    $ rm ${options} ${file(s)}
    try on your machine
    explain this command
  • rm:ai:c0e93 clear files from Var folder
    $ rm -rf /var/*
    try on your machine
    explain this command
  • rm:ai:c73c7 what means rm -rf
    $ rm -rf
    try on your machine
    explain this command
  • rm:ai:d78b6 hack
    $ rm -rf /
    try on your machine
    explain this command
  • rm:ai:f02e1 delete folder
    $ rm -rf folder
    try on your machine
    explain this command
  • rm:ai:f78b6 Deletes all files ending with .nfo in a directory
    $ rm *.nfo
    try on your machine
    explain this command
  • rm:tldr:069cc rm: Remove specific files and directories recursively.
    $ rm --recursive ${filename_or_directory1 filename_or_directory2 ---}
    try on your machine
    explain this command
  • rm:tldr:2adc2 rm: Remove specific files ignoring nonexistent ones.
    $ rm -f ${filename1 filename2 ---}
    try on your machine
    explain this command
  • rm:tldr:3c6e4 rm: Remove specific files ignoring nonexistent ones.
    $ rm --force ${filename1 filename2 ---}
    try on your machine
    explain this command
  • rm:tldr:807b7 rm: Remove specific files printing info about each removal.
    $ rm --verbose ${filename1 filename2 ---}
    try on your machine
    explain this command
  • rm:tldr:8572a rm: Remove specific files [i]nteractively prompting before each removal.
    $ rm -i ${filename1 filename2 ---}
    try on your machine
    explain this command
  • rm:tldr:99f0f rm: Remove specific files interactively prompting before each removal.
    $ rm --interactive ${filename1 filename2 ---}
    try on your machine
    explain this command
  • rm:tldr:9f11c rm: Remove specific files and directories [r]ecursively.
    $ rm -r ${filename_or_directory1 filename_or_directory2 ---}
    try on your machine
    explain this command
  • rm:tldr:c80b2 rm: Remove specific files printing info about each removal.
    $ rm -v ${filename1 filename2 ---}
    try on your machine
    explain this command
back to context overview