nkf
ikeda@ikeda-VirtualBox:~$ sudo apt-get install nkf
日本語TeXはeucに変換. nkf -e foosjis.tex >foo.tex
つぎのようなシェルスクリプトを用意しておくと便利かも
toeuc
#!/bin/csh
foreach i ($*)
if ( -f $i ) then
nkf -euc $i > /var/tmp/toeuc.$$
cp /var/tmp/toeuc.$$ $i
rm -f /var/tmp/toeuc.$$
endif
end
tosjis
#!/bin/csh
foreach i ($*)
if ( -f $i ) then
nkf -sjis $i > /var/tmp/tosjis.$$
cp /var/tmp/tosjis.$$ $i
rm -f /var/tmp/tosjis.$$
endif
end