Useful Unix commands To search text in files and all subdirectories find [directory] -name [files] | xargs grep [text to search for] Example to find “insert” in the odb directory (search all files in that directory): find odb -name “*” | xargs grep “insert” Run job in batch now at -s now < thejob.sh List…
↧