heptagon/tools/enforce_style.sh
2010-06-30 15:36:07 +02:00

5 lines
175 B
Bash
Executable file

#!/bin/sh
find \( -iname "*.ml" -or -iname "*.mli" \) -exec perl -pi -e 's/( |\t)+$//g' {} \;
find \( -iname "*.ml" -or -iname "*.mli" \) -exec perl -pi -e 's/\t/ /g' {} \;