shell脚本查看文件存在则拷贝
时间: 2023-02-14 10:43:05 浏览: 122
文件循环拷贝-shell_变成基础
好的,我可以用中文来回答你的问题。
如果你想在 shell 脚本中检查文件是否存在,并且如果存在就拷贝它,你可以使用以下代码:
```
if [ -f /path/to/file ]; then
cp /path/to/file /path/to/destination
fi
```
这段代码会检查文件 `/path/to/file` 是否存在,如果存在就使用 `cp` 命令将文件拷贝到 `/path/to/destination`。
希望这能帮到你!
阅读全文