2006-09-19 16:53:17 +00:00
|
|
|
|
2015-02-01 09:11:44 +00:00
|
|
|
function isatty -d "Tests if a file descriptor is a tty"
|
2016-11-28 05:27:22 +00:00
|
|
|
set -l fd 0
|
|
|
|
if count $argv >/dev/null
|
|
|
|
switch $argv[1]
|
2006-09-19 16:53:17 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
case -h --h --he --hel --help
|
|
|
|
__fish_print_help isatty
|
|
|
|
return 0
|
2006-09-19 16:53:17 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
case stdin ''
|
|
|
|
set fd 0
|
2006-09-19 16:53:17 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
case stdout
|
|
|
|
set fd 1
|
2006-09-19 16:53:17 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
case stderr
|
|
|
|
set fd 2
|
2006-09-19 16:53:17 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
case '*'
|
|
|
|
set fd $argv[1]
|
2010-09-18 02:18:26 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
end
|
|
|
|
end
|
2015-02-01 09:11:44 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
# Use `command test` because `builtin test` doesn't open the regular fd's.
|
|
|
|
# See https://github.com/fish-shell/fish-shell/issues/1228
|
|
|
|
command test -t "$fd"
|
2006-09-19 16:53:17 +00:00
|
|
|
|
|
|
|
end
|