2021-07-08 12:39:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
case $(uname -r) in
|
2021-10-05 15:32:57 +00:00
|
|
|
*microsoft*|*Microsoft*) powershell.exe -noprofile start-process "'$@'";;
|
2021-09-18 17:06:06 +00:00
|
|
|
*)
|
|
|
|
if command -v exo-open >/dev/null 2>&1; then
|
|
|
|
exo-open "$@" 1>/dev/null 2>&1
|
|
|
|
else
|
|
|
|
xdg-open "$@"
|
|
|
|
fi
|
|
|
|
;;
|
2021-07-08 12:39:37 +00:00
|
|
|
esac
|