How to Remove a Directory and File in Linux [rm Command]
Jun 17, 2025 pm 03:15 PMThe rm command is a UNIX and Linux command line utility for removing files or directories on a Linux system. In this article, we will clearly explain what actually rm and “rm -rf” commands can do in Linux.
In addition, we will share a few useful examples of removing a file, removing a directory, removing multiple files or directories, prompting for confirmation, removing files recursively, and forcing the removal of files.
The rm command is also one of the frequently used commands on a Linux system, but also a dangerous command that you will discover later on in this article.
Table of Contents
Remove File in Linux
By default, the rm command only removes file or files specified on the command line immediately and it doesn’t remove directories.
$ mkdir -p tecmint_files $ touch tecmint.txt $ rm tecmint.txt $ rm tecmint_files
Remove Multiple Files in Linux
To remove multiple files at once, specify the file names one by one (for example file1 file2) or use a pattern to remove multiple files (for example, a pattern ending with .txt
) at one go.
$ rm tecmint.txt fossmint.txt [Using Filenames] $ rm *.txt [Using Pattern]
Remove Directory in Linux
To remove a directory, you can use the -r
or -R
switch, which tells rm to delete a directory recursively including its content (sub-directories and files).
$ rm tecmint_files/ $ rm -R tecmint_files/
Remove Files with Confirmation in Linux
To prompt for confirmation while deleting a file, use the -i
option as shown.
$ rm -i tecmint.txt
Remove Directory with Confirmation in Linux
To prompt for confirmation while deleting a directory and its sub-directories, use the -R
and -i
option as shown.
$ rm -Ri tecmint_files/
Force Remove Directory in Linux
To remove a file or directory forcefully, you can use the option -f
force a deletion operation without rm prompting you for confirmation. For example, if a file is unwritable, rm will prompt you whether to remove that file or not, to avoid this and simply execute the operation.
$ rm -f tecmint.txt
When you combine the -r
and -f
flags, it means that recursively and forcibly remove a directory (and its contents) without prompting for confirmation.
$ rm -rf fossmint_files
Delete Directory with Verbose in Linux
To show more information when deleting a file or directory, use the -v
option, this will enable the rm command to show what is being done on the standard output.
$ rm -rv fossmint_files
rm -rf / Command in Linux
You should always keep in mind that “rm -rf”
is one of the most dangerous commands, that you can never run on a Linux system, especially as root. The following command will clear everything on your root(/)
partition.
# rm -rf /
Create rm Command Alias in Linux
As a safety measure, you can make rm always prompt you to confirm a deletion operation, every time you want to delete a file or directory, using the -i
option.
To create an alias for the rm command permanently, add an alias in your $HOME/.bashrc
file.
alias rm="rm -i"
Save the changes and exit the file. Then source your .bashrc
file as shown or open a new terminal for the changes to take effect.
$ source $HOME/.bashrc
This simply implies that whenever you execute rm, it will be invoked with the -i
option by default (but using the -f
flag will override this setting).
$ rm fossmint.txt $ rm tecmint.txt
Does rm Remove Files in Linux
Actually, the rm command never deletes a file, instead, it unlinks from the disk, but the data is still on the disk and can be recovered using tools such as PhotoRec, Scalpel, or Foremost.
If you really want to permanently delete a file or directory, you can use the shred command-line tool to overwrite a file to hide its contents.
That’s it! In this article, we have explained some really useful rm command examples and also elaborated on what the “rm -rf” command can do in Linux. If you have any questions, or additions to share, use the comment form below to reach us.
The above is the detailed content of How to Remove a Directory and File in Linux [rm Command]. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

There are three ways to create empty files in the command line: First, the simplest and safest use of the touch command, which is suitable for debugging scripts or placeholder files; Second, it is quickly created through > redirection but will clear existing content, which is suitable for initializing log files; Third, use echo"> file name to create a file with an empty string, or use echo-n""> file name to avoid line breaks. These three methods have their own applicable scenarios, and choosing the right method can help you complete the task more efficiently.

Are you looking for good software to write mathematical equations? If so, this article provides the top 5 equation editors that you can easily install on your favorite Linux distribution.In addition to being compatible with different types of mathema

Eclipse is a free integrated development environment (IDE) that programmers around the world use to write software, primarily in Java, but also in other major programming languages using Eclipse plugins.The latest release of Eclipse IDE 2023?06 does

Linux administrators should be familiar with the command-line environment. Since GUI (Graphical User Interface) mode in Linux servers is not commonly installed.SSH may be the most popular protocol to enable Linux administrators to manage the servers

Linux has a rich collection of commands, and while many of them are powerful and useful for various tasks, there are also some funny and whimsical commands that you can try out for amusement. 1. sl Command (Steam Locomotive) You might be aware of the

LXD is described as the next-generation container and virtual machine manager that offers an immersive for Linux systems running inside containers or as virtual machines. It provides images for an inordinate number of Linux distributions with support

PPA is an important tool for Ubuntu users to expand their software sources. 1. When searching for PPA, you should visit Launchpad.net, confirm the official PPA in the project official website or document, and read the description and user comments to ensure its security and maintenance status; 2. Add PPA to use the terminal command sudoadd-apt-repositoryppa:/, and then run sudoaptupdate to update the package list; 3. Manage PPAs to view the added list through the grep command, use the --remove parameter to remove or manually delete the .list file to avoid problems caused by incompatibility or stopping updates; 4. Use PPA to weigh the necessity and prioritize the situations that the official does not provide or require a new version of the software.

Gogo is a remarkable tool to bookmark directories inside your Linux shell. It helps you create shortcuts for long and complex paths in Linux. This way, you no longer need to type or memorize lengthy paths on Linux.For example, if there's a directory
