first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / buildor / buildor_find_unused_includes.sh
1 #!/bin/bash
2
3 # looks for include files that have been commented out.
4
5 tab=$'\t'
6 find $* -type f -exec grep -l "^[ $tab_char]*\/\/[ $tab_char]*#include" {} ';' | grep -v ".*\.svn.*"
7