dotar/SpaceVim.d/snippets/sh.snip

8 lines
254 B
Plaintext
Raw Normal View History

snippet OS
options head
abbr determine OS type(Mac/Linux/Windows)
2020-10-25 18:09:32 +08:00
if [[ "$(uname)" == "Darwin" ]]; then
elif [[ "$(expr substr $(uname -s) 1 5)" == "Linux" ]]; then
elif [[ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]]; then
fi