从列表中查找文件并将其复制到新目录中

时间:2015-03-27 23:39:29

标签: macos terminal find

我想通过OS X的命令行终端找到文件,然后将找到的文件复制到新目录。我想要查找的文件的文件名位于一个listexample.txt文件中,其中有大约5000个文件名。

文件listexample.txt如下所示:

1111 00001 55553.bmp
1113 11312 24125.bmp
…

我尝试过这样的事情:

find /directory -type f "`cat listexample.txt`" -exec cp {} …

但无法让它运行。

我现在有这个,但它不起作用:

cat listexample.txt | while read line; do grep "$line" listexample.txt -exec find /directorya "$line" -exec cp {} /directoryb \; done

想法是读取列表example.txt的行,然后使用grep行,在目录a中找到该文件,然后将找到的文件复制到新目录b。我认为由于我的文件名的性质,见上文,名称中也有空格问题。

我也开始采用这种方法来看看发生了什么,但是没有达到目的。

for line in `cat listexample.txt`; do grep $line -exec echo "Processing $line"; done

1 个答案:

答案 0 :(得分:1)

以下是查找和复制脚本(copy.sh)的解决方案,以防有人遇到类似问题:

首先,通过以下方式授予脚本权限:chmod +x fcopy.sh 然后使用:./fcopy.sh listexample.txt

运行它

脚本内容:

#!/bin/bash
target="/directory with images"

while read line
do
    name=$line
    echo "Text read from file - $name"
    find "${target}" -name "$name" -exec cp {} /found_files \;    

done < $1

干杯