mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 04:07:17 +08:00
12 lines
188 B
Plaintext
12 lines
188 B
Plaintext
|
#!/bin/sh -e
|
||
|
FROM="$1"
|
||
|
TO="$2"
|
||
|
shift ; shift
|
||
|
while [ $# -gt 0 ]
|
||
|
do
|
||
|
FILE="$1"
|
||
|
shift
|
||
|
iconv -f "$FROM" -t "$TO" "$FILE" >.tmp.iconv
|
||
|
mv .tmp.iconv "$FILE"
|
||
|
done
|