Friday, June 15, 2012

The tip of the day "xargs"

The command xargs can get multiple input and redirect the input one by one to any command,  for example: ' find . -type f  | xargs grep -l koko '  so like this we can search in every file the word koko ...