Below are the ways to use find command in linux/unix
Find files using file-name ( case in-sensitve find)
find -iname "MyCProgram.c"
Find all empty files in home directory
find ~ -empty
Find files bigger than the given size
find ~ -size +100M
find -iname "MyCProgram.c"
find ~ -empty
find ~ -size +100M
Our website uses cookies to improve your experience. Learn more
Ok