How to Remove (Delete) a File or Directory in Linux

August 8, 2019

Introduction

How do I delete a file in Linux using the command line option? How can I remove a Linux directory?

Deleting files and directories is a necessary task when working with Linux. In this guide, learn how to remove files and directories from the command line in Linux using the RM Command.

tutorial on removing linux Files and Directories using the command line

Prerequisites

  • A command line / terminal window (Ctrl-Alt-T or Ctrl-Alt-F2)
  • A user account with sudo privileges (optional)

Note: If you feel that a directory is misplaced and you do not want to remove it, try moving it to a different place. To learn how, visit our post How to Move Directories in Linux.

How To Remove or Delete Linux Files

The rm command deletes files in a Linux. The command unlinks the data from the file name, allowing the user to overwrite on that particular storage space.

To delete a single file, entering the following in the command line:

rm filename

The rm command can be used  to delete more than one file at a time:

rm filename_1 filename_2 filename_3

Wildcards can be used with this command.

For example, to delete all files with the .bmp filename, enter:

rm *.bmp

This method is also used to delete all files that contain a string of characters:

rm *sample*.*

This will erase any file that has the word sample in the name.

The system will search the current directory for the file you want to remove.

To delete a file in a different directory, either switch to that directory first:

cd /tmp
rm filename

Or you can specify the file location in a single command directly:

rm /tmp/filename

Note: Once the rm command has deleted a file, you will not be able to access it. The only way to retrieve a file would be to restore it from a backup (if one is available).

rm Command Options

You can adjust the way the rm command works by adding options. An option is a hyphen, followed by one or more letters that stand for commands.

If you’re deleting multiple files, add a confirmation prompt. Use the –ioption to use an interactive dialog:

rm –i *.key

Confirm the deletion of files by typing ‘yes’ or ‘no.’

Terminal asks for confirmation before removing file.

To display the progress of the deletion with the v or verbose command:

rm –v *.txt

The output confirms that the file test.txt has been successfully removed.

Confirmation that the test.txt file has been removed.

To force the removal of a file that’s write-protected, use the –f option:

rm –f filename

To use sudo privileges for a file that says Access denied and delete it:

sudo rm filename

Note: Read about sudo rm -rf and why it is a dangerous Linux command.

How to Delete a Directory in Linux

A linux directory (or folder) can be empty, or it can contain files. To remove a directory in Linux, use one of the following two commands:

  • rmdir command – removes empty directories/folders
  • rm command – removes a directory/folder along with all the files and sub-directories in it

Remove Directory Linux with rm Command

By adding the -r (-R) option to the rm command, you can remove a directory along with all its contents.

To remove a directory (and everything inside of it) use the –r option as in the command:

rm –r dir_name

This will prompt you for confirmation before deleting.

To remove a directory without confirmation:

rm –rf directory

Also, you can delete more than one directory or folder at a time:

rm –r dir_name1 dir_name2 dir_name3

Remove Directories in Linux with rmdir Command

Remember, the rmdir command is used only when deleting empty folders and directories in Linux. If a specified directory is not empty, the output displays an error.

The basic syntax used for removing empty Linux folders/directories is:

rmdir [dir_name]

Additionally, you can delete multiple empty directories at once by typing:

rmdir [dir_name1][dir_name2][dir_name3]

If the command finds content in one of the listed directories, it will skip it and move on to the next one.

Note: To permanently delete a file in Linux by overwriting it, use the shred command.

Conclusion

With this tutorial, deleting files and directories in Linux was made easy. The rm and rmdir commands are flexible with many options available.

Was this article helpful?
YesNo
Vladimir Kaplarevic
Vladimir is a resident Tech Writer at phoenixNAP. He has more than 7 years of experience in implementing e-commerce and online payment solutions with various global IT services providers. His articles aim to instill a passion for innovative technologies in others by providing practical advice and using an engaging writing style.
Next you should read
How to Find Files in Linux With the Find Command
December 19, 2018

The find command is a useful command-line tool in Linux. It allows you to use the terminal to search for a...
Read more
How to Kill a Process in Linux? Commands to Terminate
April 12, 2019

If a Linux process becomes unresponsive or is consuming too many resources, you may need to kill it. Most...
Read more
Chown Command: Change Owner of File in Linux
April 29, 2019

The chown command changes user ownership of a file, directory, or link in Linux. Every file is associated...
Read more
How to Copy Files and Directories in Linux
May 21, 2019

Want to learn how to copy files in Linux OS? This guide will show you how to use the Linux commands to copy...
Read more