Created
June 25, 2015 08:59
-
-
Save schtibe/ef7f64477065a1187aca to your computer and use it in GitHub Desktop.
Grep for Webdevs (filter all the minified stuff)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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