A.2 创建文件夹

```bash
mkdir images
```

创建文件用 `touch` 如 `touch .Rprofile` 

```bash
# 删除文件夹及子文件夹,递归删除
rm -rf images/
# 删除文件
rm .Rprofile
```