blob: accb10f2d4b610e4a4abe1c1786081b0eabf4810 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
BASEDIR=%BASEDIR%
erl -pa ${BASEDIR}/ebin -pa ${BASEDIR}/mods/ebin \
-noshell -nouser -s edit start $* 2>/tmp/ermacs-misc.log
# How do I get sh to run this in response to SIGINT?
stty sane
|