📌  相关文章
📜  从 linux 中的文件夹中移动所有文件 - Shell-Bash 代码示例

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

代码示例1
mv source_path/* destination_path/

here you have to put forward slash and * after source path so that it will take files inside source_path instead of the complete source directory.
The above command moves all files (unless they are hidden) in the source directory to the destination directory.