Skip to content

Instantly share code, notes, and snippets.

@rbrigby
Created July 9, 2019 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbrigby/38964ca987e43afa18bcdfbf855f4c12 to your computer and use it in GitHub Desktop.
Save rbrigby/38964ca987e43afa18bcdfbf855f4c12 to your computer and use it in GitHub Desktop.
count lines in linux dir
# https://linux.die.net/man/1/wc
# count lines in linux dir with filename containing foobar
ls -l | grep foobar | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment