码迷,mamicode.com
首页 > 系统相关 > 详细

shell file/dir exist

时间:2018-08-15 20:27:14      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:lse   bin   and   pre   shel   end   .com   else   shell   

https://www.cnblogs.com/37yan/p/6962563.html

 

caution!!! if should be end with fi

 

caution!!! there should be a space between [ and ! , also between 1 and ]

if [ ! $# -eq 1  ];then
#!/bin/bash
# 判断传入的参数的个数是不是一个
if [ ! $# -eq 1  ];then
  echo param error!
  exit 1
fi

# 判断目录是不是已经存在,如果不存在则创建,存在则输出“dir exist” 
dirname=$1
echo "the dir name is $dirname"
if [ ! -d $dirname  ];then
  mkdir $dirname
else
  echo dir exist
fi

 

shell file/dir exist

标签:lse   bin   and   pre   shel   end   .com   else   shell   

原文地址:https://www.cnblogs.com/zealousness/p/9483523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!