mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
9 lines
132 B
Bash
9 lines
132 B
Bash
#!/bin/sh
|
|
command_exists () {
|
|
command -v "$1" >/dev/null 2>&1
|
|
}
|
|
|
|
if command_exists winpty && test -t 1; then
|
|
exec < /dev/tty
|
|
fi
|