9 lines
79 B
Text
9 lines
79 B
Text
|
#!/bin/sh
|
||
|
|
||
|
case $(tty) in /dev/tty[0-9]*)
|
||
|
exit 0;;
|
||
|
*)
|
||
|
exit 1;;
|
||
|
esac
|
||
|
|