在 shell 中判断操作系统,使用 uname
命令
if [[ `uname` == 'Darwin' ]]; then
echo "Mac OS"
fi
if [[ `uname` == 'Linux' ]]; then
echo "Linux"
fi
在 shell 中判断操作系统,使用 uname
命令
if [[ `uname` == 'Darwin' ]]; then
echo "Mac OS"
fi
if [[ `uname` == 'Linux' ]]; then
echo "Linux"
fi