shell脚本实现进入指定目录创建文件夹
时间: 2023-12-16 14:27:31 浏览: 346
shell脚本判断文件夹或目录是否存在,不存在则创建新文件夹或目录.sh
5星 · 资源好评率100%
以下是实现进入指定目录创建文件夹的shell脚本:
```shell
#!/bin/bash
cd /path/to/directory # 进入指定目录
mkdir folder_name # 创建文件夹
```
其中,`/path/to/directory`为指定的目录路径,`folder_name`为要创建的文件夹名称。
阅读全文