📌  相关文章
📜  bash 移动文件列表 - Shell-Bash 代码示例

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

代码示例1
# Basic syntax:
mv `cat list_of_files` /new/directory

# Note, the filenames in the list_of_files can be separated by spaces or
#    by new lines
# Note, just replace mv with cp if you want to copy a list of files to
#    a new directory instead of moving them