Joined August 2012
·
Posted to
My awesome git aliases
over 1 year
ago
grep --heading --break --ignore-case -e 'FIX:' -e 'FIXME:'
this should be
grep --heading --break --ignore-case -e '\bFIX\b:' -e '\bFIXME\b:'
as original greps 'prefix:' and other similar words
Achievements
18 Karma
0 Total ProTip Views
Charity
Fork and commit to someone's open source project in need
Nephila Komaci
Have at least one original repos where PHP is the dominant language
Another way is to use mosh