📌  相关文章
📜  bash 如何复制或移动列表中的所有文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:47.798000             🧑  作者: Mango

代码示例1
# Basic syntax:
cp `cat list_of_files` /new/directory # To move the files, use mv instead
# Where the list_of_files can be separated by new lines or spaces and
# can include the full path or just the relative path (as long as you
# run the command in the directory where the files are for the latter)