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.
我正在尝试删除目录“XYZ”中的所有文件,而不在 Linux 上的 bash 中使用 find 命令。
使用以下命令:
rm -f XYZ/*
如果您还想删除子目录,请使用:
rm -fr XYZ/*
如果您还想删除目录,请使用
rm -fr XYZ
如果要删除一个目录下的所有文件,进入该目录执行:rm -f *
为什么find还要进入呢?用于rm -r XYZ递归删除目录XYZ。
find
rm -r XYZ
XYZ