fish-shell/share/functions/open.fish
axel 8a93b6f26d Make xdg-version of open handle multiple files.
darcs-hash:20090216211103-ac50b-f8268e8d50a84457bb49ac3d1e982cba09dbfec6.gz
2009-02-17 07:11:03 +10:00

26 lines
459 B
Fish

#
# This allows us to use 'open FILENAME' to open a given file in the default
# application for the file.
#
if not test (uname) = Darwin
function open --description "Open file in default application"
if count $argv >/dev/null
switch $argv[1]
case -h --h --he --hel --help
__fish_print_help open
return 0
end
end
if type -f xdg-open >/dev/null
for i in $argv
xdg-open $i
end
else
mimedb -l -- $argv
end
end
end