使用 linux 命令将所有文件和文件夹从 html/folder 移动到 html/
Move all files and folder from html/folder to html/ using linux command
我试过这个命令 mv -v html/folder html/
但是,它给出了它们是同一个文件夹的错误
根据 https://unix.stackexchange.com/questions/50487/how-to-move-all-files-and-folders-via-mv-command,这应该有效:
mv html/folder/* html/
我试过这个命令 mv -v html/folder html/
但是,它给出了它们是同一个文件夹的错误
根据 https://unix.stackexchange.com/questions/50487/how-to-move-all-files-and-folders-via-mv-command,这应该有效:
mv html/folder/* html/