repo.or.cz
/
arch-packages.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
OCaml 4.14.0 rebuild
[arch-packages.git]
/
man-db
/
trunk
/
convert-mans
blob
58a0224b0b5892125e948331367271a8f01b9a7b
1
#!/bin/sh -e
2
FROM
=
"
$1
"
3
TO
=
"
$2
"
4
shift
;
shift
5
while
[
$#
-gt
0
]
6
do
7
FILE
=
"
$1
"
8
shift
9
iconv
-f
"
$FROM
"
-t
"
$TO
"
"
$FILE
"
>
.tmp.
iconv
10
mv
.tmp.
iconv
"
$FILE
"
11
done