Files
clawd/lib/resource/3588s/src/S50-lv_demo

17 lines
117 B
Bash
Executable File

#! /bin/sh
start() {
demo &
}
case "$1" in
start)
start
;;
*)
echo "Usage: $0 {start}"
exit 1
esac
exit $?