File: scriptfile

package info (click to toggle)
usbmgr 0.4.8-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 344 kB
  • ctags: 318
  • sloc: ansic: 2,067; sh: 539; makefile: 198
file content (15 lines) | stat: -rwxr-xr-x 142 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

OUT=/tmp/script.out

case $1 in
"start")
	echo "start" > $OUT
	;;
"stop")
	echo "stop" > $OUT
	;;
*)
	echo "ouch!" > $OUT
	;;
esac