The LINUX command ‘find’ is explained in less than one minute!



$ find . -name “AWK” -exec stat {} +

Explanation of the above command:

find #the actual command
. #Search from the current Dir

-name “AWK” #Match string “AWK”

-exec stat #Run the exec on output

{} # Begin and End of loop

+ or ; #Press Enter only need + or ;

Comments are closed.