2006-09-20 00:53:17 +08:00
|
|
|
|
2015-02-01 17:11:44 +08:00
|
|
|
function isatty -d "Tests if a file descriptor is a tty"
|
|
|
|
set -l fd 0
|
|
|
|
if count $argv >/dev/null
|
|
|
|
switch $argv[1]
|
2006-09-20 00:53:17 +08:00
|
|
|
|
2015-02-01 17:11:44 +08:00
|
|
|
case -h --h --he --hel --help
|
|
|
|
__fish_print_help isatty
|
|
|
|
return 0
|
2006-09-20 00:53:17 +08:00
|
|
|
|
2015-02-01 17:11:44 +08:00
|
|
|
case stdin
|
|
|
|
set fd 0
|
2006-09-20 00:53:17 +08:00
|
|
|
|
2015-02-01 17:11:44 +08:00
|
|
|
case stdout
|
|
|
|
set fd 1
|
2006-09-20 00:53:17 +08:00
|
|
|
|
2015-02-01 17:11:44 +08:00
|
|
|
case stderr
|
|
|
|
set fd 2
|
2006-09-20 00:53:17 +08:00
|
|
|
|
2015-02-01 17:11:44 +08:00
|
|
|
case '*'
|
|
|
|
set fd $argv[1]
|
2010-09-18 10:18:26 +08:00
|
|
|
|
2015-02-01 17:11:44 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
eval "tty 0>&$fd >/dev/null"
|
2006-09-20 00:53:17 +08:00
|
|
|
|
|
|
|
end
|