gpt4 book ai didi

linux - 如何将文件复制到我在文件中包含文件名的特定文件夹?

转载 作者:太空宇宙 更新时间:2023-11-04 09:41:35 25 4
gpt4 key购买 nike

我正在使用 linux,我有一个文件,其中包含来自硬盘不同位置的近 90 个文件名。我想将这些文件复制到 USB 驱动器,我该怎么做?包含文件名的文件采用以下格式:

file1
file2
.
.
.
filen

我认为 shell 脚本可以很容易地做到这一点,但由于我是初学者,我不知道如何编写它。请提供解决方案。

最佳答案

您必须知道 USB 驱动器的路径。然后复制命令看起来像

cp somefile tolocation

你需要把它放在一个读取文件的循环中

while read line
do
echo $line;
echo "do your copy here, for example cp $line /tmp/"
done < "yourfile"

关于linux - 如何将文件复制到我在文件中包含文件名的特定文件夹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20860529/

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