3. find command examples
Find files using file-name ( case in-sensitve find)
http://geniusprog.webs.com/apps/forums/topics/show/10187156-using-find-a-powerful-command
http://geniusprog.webs.com/apps/forums/topics/show/10187156-using-find-a-powerful-command
# find -iname "MyCProgram.c"
Execute commands on files found by the find command
$ find -iname "MyCProgram.c" -exec md5sum {} \;
Find all empty files in home directory
# find ~ -empty
No comments:
Post a Comment