shell:判断文件夹是不是存在,如果不存在则创建

前端之家收集整理的这篇文章主要介绍了shell:判断文件夹是不是存在,如果不存在则创建前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

创建一个名称叫 testgrid的文件

新建一个名字为test.sh的文件内容如下

!/bin/bash

if [ ! -d testgrid  ];then
  mkdir testgrid
else
  echo dir exist
fi

很多时候我们需要从外部需要创建的文件夹的名称

从外部参数参数

新建一个名字为test.sh的文件内容如下

#!/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

创建名称为123456的目录

sh test.sh 123456

原文链接:https://www.f2er.com/bash/388178.html

猜你在找的Bash相关文章