8 lines
248 B
Plaintext
8 lines
248 B
Plaintext
|
snippet OS
|
||
|
options head
|
||
|
abbr determine OS type(Mac/Linux/Windows)
|
||
|
if [ "$(uname)" == "Darwin" ]; then
|
||
|
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
|
||
|
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
|
||
|
fi
|