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