shell file/dir exist

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell file/dir exist相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

Shell中的${}##和%%几点说明

Shell中的${}##和%%使用范例

介绍下Shell中的${}##和%%使用范例

介绍下Shell中的${}##和%%使用范例

shell中#*,##*,#*,##*,% *,%% *的含义及用法

php删除非空目录代码实现