编写shell代码,在家目录创建目录exer,并在exer中创建文件index.html,复制到/root目录
时间: 2024-04-07 20:30:11 浏览: 40
商务应用范例Exer2共1页.pdf.zip
下面是您要求的Shell代码:
```shell
#!/bin/bash
# 创建exer目录
mkdir ~/exer
# 在exer目录中创建index.html文件
touch ~/exer/index.html
# 复制index.html文件到/root目录
cp ~/exer/index.html /root/
```
请注意,这段代码将在用户的家目录中创建`exer`目录,并在其中创建`index.html`文件。然后,`index.html`文件将被复制到`/root`目录中。
阅读全文