Archive for July, 2012
-
Command line: search in long files for lines containing a particular string, and print to another file
Good one to use: grep “string_you are_searching_for” file_you_are_searching_in | awk ‘{ print $0 }’ > new_file
Read more »