InterviewSolution
Saved Bookmarks
| 1. |
In Unix, can we delete multiple files at the same time? If yes, then how? |
|
Answer» YES, we can delete multiple files at once in Unix. The rm command (short for remove) is a command USED in Unix and Unix-like systems to delete or remove files, directories, or symbolic LINKS from FILE systems. Like other commands, rm has options that specify how it should behave. Some of the options are as follows:
Syntax (to delete multiple files at once): $ rm filename1 filename2 filename3 |
|