Wednesday 30 June 2010

Find by file name in Bash

Easy but useful command:
To find a file by name, use 'find' command. It will search all assigned path including its sub-folders
  • find 
    • 1st argument: the path to find
    • -name: file by name
    • -i: case insensitive

No comments:

Post a Comment