/www/wwwroot/szufh.hk_881/application/cms/view/index
cd /www/wwwroot/szufh.hk_881/application/cms/view/index grep -r -P '[\x{4e00}-\x{9fff}]' . --include="*" -l
-r
-P
[\x{4e00}-\x{9fff}]
-l
grep -r -P '[\x{4e00}-\x{9fff}]' . --include="*" -n
find . -type f | while read file; do if grep -q '[一-龥]' "$file" 2>/dev/null; then echo "$file 包含中文字符" fi done
for file in $(find . -type f); do count=$(grep -oP '[\x{4e00}-\x{9fff}]' "$file" 2>/dev/null | wc -l) if [ "$count" -gt 0 ]; then echo "$file: $count 个中文字符" fi done
grep -r -P '[\x{4e00}-\x{9fff}]' . --include="*.html" --include="*.php" -l