[Mew-dist 2854] Using Mew-1.92 with MH
SAKAI Kiyotaka
ksakai at example.com
1997年 10月 31日 (金) 14:19:19 JST
ふと思い立って、ちょっとしたシェルスクリプトを作ってみました。
Mew-1.92/IM-76 の機能の full support は不可能ですが、こうやって拡張し
ていけば、まがりなりにも MH ユーザーが Mew-1.92 を利用することは可能に
なるかと思います。
# やっぱり MH は速い…。
--
酒井 清隆 (E-mail: ksakai at example.com)
-------------- next part --------------
#!/bin/sh
# imget.sh: emulate imget program using MH's inc
# options
# --src=+inbox -> +inbox
# --width=80 -> -width 80
# other options -> ignore
#
mhdir=/usr/local/bin/mh
arg=
for opt in $*
do
case $opt in
-*=*) optarg=`echo $opt | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case $opt in
--width=*)
arg="$arg -width $optarg"
;;
--src=*)
arg="$arg $optarg"
;;
*)
;; # ignore
esac
done
$mhdir/inc $arg
-------------- next part --------------
#!/bin/sh
# imls.sh: emulate imget program using MH's scan
# options
# --src=+inbox -> +inbox
# --width=80 -> -width 80
# other options -> ignore
#
mhdir=/usr/local/bin/mh
arg=
for opt in $*
do
case $opt in
-*=*) optarg=`echo $opt | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case $opt in
--width=*)
arg="$arg -width $optarg"
;;
--src=*)
arg="$arg $optarg"
;;
*)
;; # ignore
esac
done
$mhdir/scan $arg
Mew-dist メーリングリストの案内