在 linux4 上编写/root/createfile.sh 的 shell 脚本,创建 20 个文件/root/shell/file00 至/root/shell/file19,如果文件存在, 则删除再创建;每个文件的内容同文件名,如 file00 文件的内容为 “file00”。用/root/createfile.sh 命令测试
时间: 2023-12-08 20:04:13 浏览: 93
制作linux根文件系统
你可以在Linux4上编写一个名为`createfile.sh的shell脚本,用于创建20个文件,并将文件内容设置为与文件名相同的内容。下面是一个示例的`createfile.sh`脚本:
```bash
#!/bin/bash
# 创建文件目录
mkdir -p /root/shell
# 循环创建文件
for i in {00..19}; do
file="/root/shell/file$i"
# 检查文件是否存在,如果存在则删除
if [ -f "$file" ]; then
rm "$file"
fi
# 创建文件并写入内容
echo "file$i" > "$file"
done
```
在Linux4上,你可以按照以下步骤使用`createfile.sh`脚本进行测试:
1. 打开终端并切换到root用户:
```
sudo su -
```
2. 创建`createfile.sh`脚本并将上述代码复制粘贴到该文件中:
```
nano /root/createfile.sh
```
3. 保存并关闭文件(按Ctrl + X,然后按Y,最后按Enter)。
4. 添加执行权限:
```
chmod +x /root/createfile.sh
```
5. 运行脚本:
```
/root/createfile.sh
```
6. 检查`/root/shell`目录下是否成功创建了20个文件,每个文件的内容与文件名相同。
现在,你可以使用`/root/createfile.sh`命令来测试并创建这些文件。注意要在root用户下运行脚本。
阅读全文