bin/cnc

8 lines
116 B
Plaintext
Raw Normal View History

#!/bin/sh
if [ -x "$CNC_HOME/cnc" ]; then
exec "$CNC_HOME/cnc" "$@"
else
printf "cnc: not installed\n"
exit 1
fi