17 lines
122 B
Bash
Executable File
17 lines
122 B
Bash
Executable File
#! /bin/sh
|
|
|
|
start() {
|
|
lv_demo &
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|