fish-shell/share/functions/isatty.fish
David Adam 66acd17bc0 isatty: revert to previous behaviour
This partially reverts commit 60808a4820.
2015-02-01 18:18:34 +08:00

29 lines
359 B
Fish

function isatty -d "Tests if a file descriptor is a tty"
set -l fd 0
if count $argv >/dev/null
switch $argv[1]
case -h --h --he --hel --help
__fish_print_help isatty
return 0
case stdin
set fd 0
case stdout
set fd 1
case stderr
set fd 2
case '*'
set fd $argv[1]
end
end
eval "tty 0>&$fd >/dev/null"
end