在linux中将文件列表从一个位置复制到另一个位置

时间:2014-10-16 04:50:28

标签: linux bash

我正在尝试将驱动器上的部分文件列表复制到另一个驱动器上的某个位置。要复制的文件列表是我试图提供给bash脚本的文本文件以及一些cp和xargs命令但无济于事。以下是bash尝试。

#!/bin/bash

while read line
do
    find . -iname "$line" -exec cp '{}' /my/destination/drive \;
done < file_list.txt 

文本文件读作没有扩展名的文件名,如下所示

my-file001
my-file002
my-file003

我也尝试过以下尝试的xargs和pax,也无济于事。

cat file_list.txt | xargs cp -t /my/destination/drive

find . -type f -exec pax -rws'|.*/||' < file_list.txt /my/destination/drive/ '{}' \;

question接近但不完全。有什么建议吗?

1 个答案:

答案 0 :(得分:7)

这将为您解决问题:

 cat file_list.txt | xargs -I {} cp {} /destination/dir/path