mirror of
https://github.com/Tribufu/TribufuJava
synced 2026-08-08 04:11:08 +00:00
13 lines
131 B
Bash
13 lines
131 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Linux
|
|
|
|
if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
|
|
then
|
|
|
|
# Mac
|
|
|
|
elif [ "$(uname)" = "Darwin" ]
|
|
then
|
|
|
|
fi
|