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