⇤ ← Revision 1 as of 2014-01-24 12:46:36
Size: 143
Comment:
|
Size: 238
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Line 4: | Line 3: |
# | |
Line 7: | Line 5: |
= Search for text in files recursively = {{{ cd startFolder grep -H "textToSearch" * -R }}} |
Filter unique values from third column, separated by space
cat datax.log | awk '/IMEI/{print $3}' | sort | uniq | wc -l
Search for text in files recursively
cd startFolder grep -H "textToSearch" * -R