bashrc: `grep' hacking.
[profile] / mdw-editor
... / ...
CommitLineData
1#! /bin/sh
2
3set -e
4editor=${MDW_EDITOR-ed}
5[ -t 0 -a -t 1 ] || TERM=dumb
6case "$EDITOR,$VISUAL,$TERM" in
7 mdw-editor,mdw-editor,dumb) editor=gnuclient;;
8 mdw-editor,mdw-editor,*);;
9 mdw-editor,*,*) editor=$VISUAL;;
10 *,*,*) editor=$EDITOR;;
11esac
12exec $editor "$@"