Linux rmdir and rm command examples
In this section, we will look at more on how to remove a file or directory on the Linux/UNIX flavor machines.
Let’s start with rmdir command.
This is used for removing of an empty directory. An empty directory means, having no files and subdirectories in it.
Syntax:
rmdir directory-name
rmdir command execution,
[rreddy@abclearn abclearn_dir1]$rmdirabclearn_dir2/
In practical, we don’t use this rmdir command so frequently. Main reason is,
Most of the times, every directory will be having at least few files and subdirectories under it. So to use this command, we have to manually eliminate each and every file and subdirectory of it. which is a tedious task.
Most of the times, every directory will be having at least few files and subdirectories under it. So to use this command, we have to manually eliminate each and every file and subdirectory of it. which is a tedious task.
The best solution is using “rm command” with “-rf” option.
rm command:
rm command is primarily used to remove single or multiple files under a directory.
Syntax:
rm file-name
Let’s understand some of its practical usages with examples.
Example-1:
Removing a particular file:
Removing a file is a straightforward requirement and there are so many of the cases for this.
Some practical usage cases,
We have worked on a sample file and want to delete after its usage.
We might find a corrupted configuration file and want to remove it and copy a new file from backup.
Syntax:
rm filename
sample rm command output is given below,
[rreddy@ebclearn ebclearn_dir1]$rm abc_lab1.txt
The one problem is, it will be removing the file without even prompting and once the file is deleted in Linux/UNIX flavor OS, we can’t pull it back.
So always best practice is to prompt for deletion of a file.
rm command with “-i” option, will prompt the user whether to delete a file or not.
[rreddy@abclearn abclearn_dir1]$rm -i abc_lab2.txt
rm: remove regular file ‘abc_lab2.txt’? y
rm: remove regular file ‘abc_lab2.txt’? y
Example-2:
Force removing a file:
We can remove the file using "-f" command with rm command it won't prompt for confirmation to delete it or not.
Syntax:
rm -f filename
Observe the following case for the proper understanding.
[rreddy@abclearn abclearn_dir1]$rm -f abc_lab2.txt
Example-3:
Removing multiple files at a time:
For removing multiple files, we will use rm command followed by file names
Syntax:
rm -i file-name1 file-name2
Observe the following usage for more understanding.
[rreddy@abclearn abclearn_dir1]$rm -i abc_lab2.txt abc_lab3.txt
For example:
If we want to delete all files under a particular directory using rm command, we can use directory name followed by a star as indicated below.
$ rm -rf Directory_Name/*
Practical usage case,
We might want to remove files from /tmp directory for memory free.
[rreddy@abclearn~]$ rm -rf /tmp/*
Example-4:
Removing a directory with files and subdirectories under it:
We can remove the directory including directories and files in the particular directory using rm command with "-r" option in this r indicates recursive.
Syntax:
rm -rf directory-name
Practical usage case,
Suppose a package is uninstalled/ removed from the system but the files and directories used by that package will be there and consume some amount of storage. to free that storage we will remove that
directory with "rm -rf' command
[rreddy@abclearn~]$ rm -rf abc_lab
Example-5:
Removing the files having the same extension:
In some cases, we need to remove all files having the same extension. we use wild cards in these scenarios.
to understand more follow the following scenario.
[rreddy@abclearn~]$ ls *.txt
a.txt b.txt c.txt d.txt
a.txt b.txt c.txt d.txt
[rreddy@abclearn~]$ rm -i *.txt
rm: remove regular empty file `a.txt'? y
rm: remove regular empty file `b.txt'?
rm: remove regular empty file `a.txt'? y
rm: remove regular empty file `b.txt'?
Possible issues we might face while removing a file or directory:
- We need to have proper privileges on that directory or file in order to delete the file or directory.
- Sometimes the filename which we are going to delete may end with space or tab. Include those white space characters while deleting the file.
0 comments:
Post a Comment