📌  相关文章
📜  bash 命令将所有文件移动到一个目录 - Shell-Bash 代码示例

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

代码示例1
/*A bash command to move all the files in current dir to dirDest dir.
* The sign '*' stands for 'all files'
*/

mv * /dirDest