Скрипт для поиска и перекодирования файлов из одной кодировки в другую только файлов исходной кодировки:
#!/bin/bash
find -name "*.js" -type f -print0 | while read -d $'\0' -r path; do test "$(echo "$path" | enca -L russian -i)" = "UTF-8" || iconv -f UTF-8 -t WINDOWS-1251 "$path" > tmp.file; mv...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.