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