mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
amended grep description
This commit is contained in:
parent
b52a32dd24
commit
e9c21740df
@ -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
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user