Skip to content

Instantly share code, notes, and snippets.

@garmr
Created January 6, 2016 15:25
Show Gist options
  • Save garmr/aa62327f208ff37666a0 to your computer and use it in GitHub Desktop.
Save garmr/aa62327f208ff37666a0 to your computer and use it in GitHub Desktop.
bash tips
# check php syntax on every "to be commited" files
for f in `git diff --cached --name-only --word-diff=porcelain`;do php -l $f;done;
# vim all files that contains a specific pattern
vim -p `fgrep -rl "pattern"`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment