5 lines
68 B
Bash
5 lines
68 B
Bash
|
#!/bin/dash
|
||
|
case "$1" in
|
||
|
1|2|3) echo "turn off hotspot" ;;
|
||
|
esac
|