Skip to content

Instantly share code, notes, and snippets.

@schtibe
Created June 25, 2015 08:59
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 schtibe/ef7f64477065a1187aca to your computer and use it in GitHub Desktop.
Save schtibe/ef7f64477065a1187aca to your computer and use it in GitHub Desktop.
Grep for Webdevs (filter all the minified stuff)
#!/bin/bash
grep --exclude=\"*min.js\" --exclude=\"*min.css\" --exclude=\"*map\" --color=always "$@"| awk '{ if (length($0) < 200) print }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment