amended grep description

This commit is contained in:
Gregory S. Kielian 2014-09-27 12:06:36 -07:00
parent b52a32dd24
commit e9c21740df

View File

@ -202,6 +202,6 @@ uniq -d file.txt
cut -d ',' -f 1 file.txt
# replaces every occurance of 'apples' with 'oranges' in file.txt
sed -i 's/apples/oranges/g' file.txt
# prints the number of occurances of "foo" in file.txt
# prints the number of lines with the string "foo" in file.txt
grep -c "foo" file.txt
```