Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Bash 中启用了扩展正则表达式
shopt -s extglob
它们可能有助于解决问题。
我运行以下失败,因为它也移动目录
$ mv `find . -maxdepth 1` django-tes/
我正在尝试查找除目录之外的所有文件并将它们移动到名为 django-tes/ 的目录中。
如何将文件夹中除目录之外的所有文件移动到终端中的文件夹?
尝试使用find . -type f -maxdepth 1
find . -type f -maxdepth 1