📜  使用 bash shell 将文件夹内容上移一级 - Shell-Bash 代码示例

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

代码示例1
# move all files (including hidden dot files) from subfolder to current directorty
# Note the space before the last full-stop!
mv subfolder/* subfolder/.* .