gpt4 book ai didi

linux - 执行linux命令将文本文件中的pdf文件复制到目录

转载 作者:太空宇宙 更新时间:2023-11-04 05:10:13 28 4
gpt4 key购买 nike

我的文本文件中有一个名为“pdf.txt”的 pdf 文件列表。如何使用 Linux 命令将其复制到目录/home/temporary。

#!/bin/bash
pdf=cat pdf.txt
cp -R $pdf /home/temporary/b

这不起作用。

最佳答案

假设每行一个文件,这应该可以做到:

#!/bin/bash
IFS=$'\n' # split on newlines, not whitespace in case filenames have spaces
for line in $(cat pdf.txt); do
cp "${line}" /home/temporary/b
done

关于linux - 执行linux命令将文本文件中的pdf文件复制到目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56333083/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com