shell脚本复制多个文件
时间: 2023-04-22 16:01:44 浏览: 795
shell脚本批量复制及执行命令的示例详解
可以使用以下命令复制多个文件:
```
cp file1 file2 file3 /path/to/destination/
```
其中,file1、file2、file3是要复制的文件名,/path/to/destination是目标文件夹的路径。如果要复制的文件在同一个文件夹下,可以使用通配符*来代替多个文件名,例如:
```
cp /path/to/source/*.txt /path/to/destination/
```
这个命令会将/path/to/source/文件夹下所有的txt文件复制到/path/to/destination/文件夹下。
阅读全文