Skip to content
  • Morten Welinder's avatar
    Remove trailing white-space from files that have it. · 5570aef3
    Morten Welinder authored
    (The following command was done in src/ and plugins/.  Note, that the
    grep has a space and a tab.)
    
    for i in `find . -name '*.[ch]' -print`; do if grep '[         ]$' $i >/dev/null; then echo $i; perl -pi -e 's/[ \t]+$//' $i; fi; done
    5570aef3