11 lines
216 B
Plaintext
Executable File
11 lines
216 B
Plaintext
Executable File
: Use /bin/sh
|
|
# checkalias: part of the Elm mail system
|
|
# @(#)$Id: checkalias,v 4.1 90/04/28 22:44:36 syd Exp $
|
|
|
|
if [ "$*" = "" ]; then
|
|
echo Usage: checkalias alias \[alias ...\] 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
exec elm -c $*
|