7 lines
123 B
Plaintext
7 lines
123 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case $(uname -r) in
|
||
|
*microsoft*) powershell.exe -noprofile start-process "$@";;
|
||
|
*) xdg-open "$@";;
|
||
|
esac
|