commit by magit in emacs@2018-02-14 15:37:04

This commit is contained in:
guobao.jiang 2018-02-14 15:37:05 +08:00
parent d68fbea4b5
commit e2b1f644ab
1 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,12 @@ do
echo ${item} ;
done
# 数字for循环
for((i=1;i<=10;i++));
do
echo $(expr $i \* 3 + 1);
done
# 判断文件夹是否存在
if [ ! -d "/data/" ];then
mkdir /data