当前位置: 首页 > 工具软件 > shell > 使用案例 >

shell 创建文件夹

湛功
2023-12-01
#!/bin/bash
dir="/root/test_dir"
if [ ! -d "$dir" ];then
mkdir $dir
echo "创建文件夹成功"
else
echo "文件夹已经存在"
fi

 

 类似资料: