commandlinefu.com is the place to record those command-line gems that you return to again and again.
Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/
You can sign-in using OpenID credentials, or register a traditional username and password.
First-time OpenID users will be automatically assigned a username which can be changed after signing in.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
grep's -c outputs how may matches there are for a given file as "file:N", cut takes the N's and awk does the sum.
There are 2 alternatives - vote for the best!
grep -o puts each occurrence in a separate line
If you can do better, submit your command here.
You must be signed in to comment.
if you leave out the -c option of grep then you can get wc to do the counting for you:
grep -r PATTERN app/ | wc -lbecause then grep returns one match per line.
Strictly speaking this is how many *lines* upon which the string appears:
echo foo foo |grep -c foo1
You can use sed to add newlines after your input string to put each on a line by itself, to count them accurately:
grep -r foo app/ | sed -e 's/foo/&\n/g' |grep -c foouse
$ awk -F\: '{sum+=$2} END {print sum}'
Good catch eichin. Although I think using wc is still a decent approximation. Another way if you're only searching for a single word is to turn all spaces into newlines:
grep -r PATTERN app/ | tr ' ' '\n' | wc -lalthough as soon as you want to search for "Micheal Jackson" this approach fails and you have use eichin's approach.
I missed the -o option on my first pass through the grep manpage. Indeed -o gets what we really want:
grep -ro PATTERN . | wc -looh, I hadn't seen that before, nice. (As noted in the other thread, -o and -c don't play well together, but it's still a much nicer way to get non-overlapping matches, and it lets you avoid repeating the string too...)