dotar/SpaceVim.d/snippets/sh.snip
2020-10-25 18:10:54 +08:00

8 lines
254 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