Saved Bookmarks
| 1. |
Explain any one File Search command. |
|
Answer» File Search Command find: This command recursively examines the specified directory tree to look for files matching some file attributes, and then takes some specified action on those files. Syntax ⇒ find [path-list] [selection-criteria] [action] selection – criteria
Examples: ⇒ find/home/Harsh – name “*.cpp” – print find /home /Harsh -m time 5 – print Here print action will print the file on the screen. |
|