Created
June 27, 2013 17:50
-
-
Save Fluxx/5878691 to your computer and use it in GitHub Desktop.
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 | |
| unique_func_names=`grep -huRPo "def \w+" disqus | cut -d ' ' -f 2 | sort | uniq` | |
| for func in $unique_func_names ; do | |
| num_found=$(grep -r $func disqus | grep -v "def " | wc -l) | |
| if [[ num_found -lt "0" ]]; then | |
| echo $num_found $func | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment