Skip to content

Commit

Permalink
add check utf8 bash script, for data and src dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed Jun 29, 2014
1 parent 42cc3e7 commit 4ee8b95
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions check_utf8.sh
@@ -0,0 +1,5 @@
#!/bin/bash
# Install isutf8 program (from package "moreutils" at least in linux mint)
# in order to use this script
find src/ -type f -exec isutf8 {} \;
find data/ -not -name "*.png" -not -name "*.ogg" -not -name "*.jpg" -not -name "*.wav" -not -name "*.gif" -not -name "*.xcf" -type f -exec isutf8 {} \;

0 comments on commit 4ee8b95

Please sign in to comment.