rm – removes a file or directory
Format: rm [options] filename
Eg: rm –i file1
Here it removes the file file1.Here it prompts whether we are sure to delete the said file
Eg2:rm –rf /data1
Here it removes the directory /data1 recursively and forcefully.
