#linux
Linux shell 判断是否安装了某个软件
# 判断是否安装了 docker if ! type docker >/dev/null 2>&1; then echo ‘docker 未安 ...