heptagon/tools/enforce_style.sh
2010-07-01 20:01:23 +02:00

5 lines
179 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' {} \;