mirror of
https://github.com/anatolykopyl/vk-bingo.git
synced 2026-03-26 04:44:26 +00:00
4 lines
83 B
Bash
4 lines
83 B
Bash
#!/bin/sh
|
|
for i in *.html; do
|
|
iconv -f windows-1251 -t UTF-8 $i > UTF8-$i;
|
|
done |