编写/root/createfile.sh的shell脚本,创建20个文件/root/shell/file00至/root/shell/file19,如果文件存在,则删除再创建;每个文件的内容同文件名,如file00文件的内容为“file00”。用/root/createfile.sh命令测试。
时间: 2023-12-07 11:02:56 浏览: 105
filemanagement.rar_软件设计/软件工程_Visual_C++_
你可以使用以下脚本来创建和删除文件:
```shell
#!/bin/bash
# 创建目录(如果不存在)
mkdir -p /root/shell
# 遍历创建文件
for ((i=0; i<20; i++)); do
file="/root/shell/file$(printf "%02d" $i)"
content="file$(printf "%02d" $i)"
# 如果文件存在,则删除
if [ -f "$file" ]; then
rm "$file"
fi
# 创建文件并写入内容
echo "$content" > "$file"
done
```
将以上脚本保存为 `/root/createfile.sh`,然后在终端中运行以下命令进行测试:
```shell
chmod +x /root/createfile.sh # 添加执行权限
/root/createfile.sh # 运行脚本创建文件
```
这将会在 `/root/shell` 目录下创建 20 个文件,每个文件的名称为 `file00` 至 `file19`,并且内容与文件名相同。如果文件已经存在,则会先删除再创建。
阅读全文