fish-shell/share/functions/isatty.fish
axel be0bd50bad Remove unneeded code from isatty, fix spelling in docs
darcs-hash:20070127141215-ac50b-d15c657b62862841df80c55095a05e9c38086a11.gz
2007-01-28 00:12:15 +10:00

28 lines
363 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