Files
ChameleonUltra/resource/tools/check_file_encoding.sh
T

8 lines
562 B
Bash
Executable File

#!/bin/bash
find . \( -not -path "./firmware/nrf52_sdk/*" -and -not -path "./firmware/objects/*" -and -not -path "./software/script/venv/*" -and -not -path "./software/bin/*" -and -not -path "./software/src/tmp/*" \) -and \( -name "*.[ch]" -or -name "*.py" -or -name "Makefile" -or -name "*.txt" -or -name "*.md" -or -name "*.sh" \) -exec sh -c "cat {} |recode utf8.. >/dev/null || echo {}" \;
# Chinese encoding: GB18030 extending EUC-CN
# recode GB18030..UTF-8 file.c
# If it fails it could be due to mix of GB18030 & UTF-8 in the same file, check by hand