写一个复制文件的shell脚本, 路径需要定义
时间: 2023-08-25 17:12:45 浏览: 97
实用工具之复制文件路径
好的,以下是一个复制文件的shell脚本,你可以根据需要修改路径:
```shell
#!/bin/bash
# 定义源文件路径
src_path="/path/to/source/file"
# 定义目标文件路径
dest_path="/path/to/destination/file"
# 复制文件
cp "$src_path" "$dest_path"
```
请注意,这个脚本只能复制文件,不能复制目录。如果需要复制目录,请使用 `cp -r` 命令。
阅读全文