9 lines
176 B
Bash
Executable file
9 lines
176 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
open $@
|
|
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
|
|
xdg-open $@
|
|
else
|
|
echo "Platform Not supported"
|
|
fi
|