add check utf8 bash script, for data and src dirs
This commit is contained in:
parent
42cc3e718e
commit
4ee8b95233
1 changed files with 5 additions and 0 deletions
5
check_utf8.sh
Executable file
5
check_utf8.sh
Executable file
|
@ -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 {} \;
|
Loading…
Add table
Reference in a new issue