Created
October 18, 2012 21:04
-
-
Save marocchino/3914717 to your computer and use it in GitHub Desktop.
find all comment in project
This file contains 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
#!/usr/local/bin/fish | |
for file in (git grep -l -E "^ *#"); echo "# "$file; git --no-pager blame -L "/^ *#/" $file; end|grep -e "\(^\|)\) *#" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment