dotfiles/bin/is-tty

10 lines
74 B
Text
Raw Normal View History

2022-05-18 00:21:46 -05:00
#!/bin/sh
case $(tty) in /dev/tty[0-9]*)
2022-07-06 11:55:14 -05:00
exit 0
;;
*)
exit 1
;;
2022-05-18 00:21:46 -05:00
esac