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