Advertisement
Guest User

Find the users that are using !important in the project

a guest
Nov 19th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.22 KB | None | 0 0
  1. # Find the users that are using !important in the project the most times:
  2. grep -Rn "\!important" . | awk -F: '{ print "git blame --line-porcelain -L " $2 ",+1 " $1 }' | sh | sed -n 's/^author //p' | sort | uniq -c | sort -rn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement