我有一个文本文件,用于指定需要复制的文件:
...
b/bamboo/forest/00000456.jpg
b/bamboo/forest/00000483.jpg
...
c/corridor/00000334.jpg
c/corridor/00000343.jpg
...
但是,我想在保留其子目录结构的同时复制它们。结果将是:
...
newfolder/b/bamboo/forest/00000483.jpg
newfolder/b/bamboo/forest/00000456.jpg
...
newfolder/c/corridor/00000334.jpg
newfolder/c/corridor/00000343.jpg
...
我有cat /path/to/files.txt | xargs cp -t /dest/path/
。但它只是将所有内容复制到一个目录。
答案 0 :(得分:1)
您可以使用cp --parents
:
--parents -- append source path to target directory
cat /path/to/files | xargs cp --parents -t new_directory
如果这不适合您,那么您可以采用无聊的方法并迭代/path/to/files.txt
中的每个文件并使用mkdir -p
根据需要制作目标目录,然后只需复制文件:
while read -r file; do
new_dir="new_directory/$(dirname "$file")"
# ^ this is the new directory root
mkdir -p "$new_dir"
cp "$file" "$new_dir/$file"
done < <(cat /path/to/files.txt)