1

我想以我在这里找到的答案为基础:Bash script to find specific files in a hierarchy of files

find $dir -name $name -exec scp {} $destination \;

我有一个包含文件名列表的文件,我需要在备份磁盘上找到这些文件,然后将找到的这些文件复制到目标文件夹,最后将找不到的文件打印到新文件中。

最后一步会很有帮助,这样我就不需要复制另一个文件列表,然后与原始列表进行比较。

如果脚本可以列出复制的文件,并进行比较,然后打印差异,那么这正是所需要的。除非 shell 进程 find 每次“找不到”文件时都可以打印到文件。

4

2 回答 2

2

假设您的列表由换行符分隔;像这样的东西应该工作

#!/bin/bash

dir=someWhere
dest=someWhereElse
toCopyList=filesomewhere
notCopied=filesomewhereElse

while read line; do
   find "$dir" -name "$line" -exec cp '{}' $dest \; -printf "%f\n"     
done < "$toCopyList" > cpList

#sed -i 's#'$dir'/##' cpList
# I used # instead of / in sed to not confuse sed with / in $dir
# Also, I assumed the string in $dir doesnot end with a /

cat cpList "$toCopyList" | sort | uniq -c | sed -nr '/^ +1/s/^ +1 +(.*)/\1/p' > "$notCopied"
# Will not work if you give wild cards in your "toCopyList"

希望能帮助到你

于 2013-04-16T09:25:51.053 回答
0
while read fname ; do
  find /FROM/WHERE/TO/COPY/ \
       -type f \
       -name "$fname" \
       -exec cp \{\} /DESTINATION/DIR/ \; 2>/dev/null 
  find /DESTINATION/DIR/ \
       -type f \
       -name "$fname" &>/dev/null || \
       echo $fname
done < FILESTOCOPY > MISSEDFILES

会做。

于 2013-04-16T09:44:27.457 回答