blob: 91f7862502d2b14e3cd18c1aaa9985e249e606cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# deactivate initex block to make initex or inimf to make inimf
case $# in
1) tm=$1 ;;
*) tm=tex ;;
esac
ed $tm.ch <<'END'
g/^@x ini/.,/^@z/s/^/ /\
?^ @x?,.p
w
q
END
test $? = 0 || (echo $0 failed; exit 1)
|