fish-shell/share/functions/_.fish
Fabian Homborg 0a8c922d92 Use command -sq instead of redirection
This option has been available for a while now and it's a bit shorter.
2017-02-18 22:16:55 +01:00

13 lines
303 B
Fish

#
# Alias for gettext or a fallback if gettext isn't installed.
#
if command -sq gettext
function _ --description "Alias for the gettext command"
command gettext fish $argv
end
else
function _ --description "Fallback alias for the gettext command"
echo -n $argv
end
end