摘要:
学习参考网站:http://www.dockone.io/article/8350 一、DOCKER概述 1.1 认识Docker 是一个应用容器引擎,采用沙箱机制相互之间不会有任何接口。 Docker is an open platform for developing, shipping(船舶、 阅读全文
摘要:
练习一:求两个数的和 #/bin/bash a=0 b=0 read -p "Input the first number: " a read -p "Input the second number: " b sum=$[$a+$b] echo "The sum is $sum" exit 0 用到 阅读全文