InterviewSolution
Saved Bookmarks
| 1. |
$ ls-R outputs all files and subdirectories in a recursive manner.(a) True(b) FalseThis question was posed to me during an interview.I would like to ask this question from Listing Directory Contents: Is Command in section The File System of Unix |
|
Answer» RIGHT option is (a) True The best explanation: The above command TRAVERSES the directory tree in a recursive manner until no subdirectories are left. In simple words, we can say that it PRODUCES a recursive listing of files. |
|