Skip to content

Instantly share code, notes, and snippets.

@ilovejs
Last active May 9, 2020 14:14
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save ilovejs/de8a0889e27a2a1f21431e2e81cf28ba to your computer and use it in GitHub Desktop.

silver searcher: https://geoff.greer.fm/ag/

ack: https://github.com/samaaron/ack

ag "pdftk"

grep -R "toUppercase()" *

ack-grep "toUppercase"

To look for the string toUpperCase( in all .c files in the current directory:

grep -F 'toUpperCase(' *.c If you want to look in subdirectories as well:

grep -r --include='*.c' -F 'toUpperCase('


tap

-- list brew tap

e.g.: brew tap winkelsdorf/custom

  • Installation brew cask install Name-of-Cask

brew help tap

brew untap # remove a tap

brew untap winkelsdorf/custom

brew doctor

--- cmd

softwareupdate --list

xcode-select -v

https://developer.apple.com/download/more/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment