目录结构如下,用于后续举例:
├── dir_test1
│ ├── a
│ ├── b
│ └── c
├── dir_test2
└── dir_test3
├── a_1
├── a_2
└── a_3
复制一个文件夹下的多个文件
- 将 dir_test1 中的多个文件,如 a,b,c 复制到文件夹 dir_test2 中,并且不需要每个文件前都添加路径,方法如下:
$ cp dir_test1/{ a,b,c} dir_test2
复制名称相似的多个文件
- 将 dir_test3 目录下的 a_1,a_2,a_3 文件复制到文件夹 dir_test2 中,方法如下:
$ cp dir_test3/a_[1-3] dir_test2
- 将 dir_test3 目录下的 a_1,a_3 文件复制到文件夹 dir_test2 中,方法如下:
$ cp dir_test3/a_[1,3] dir_test2