在使用类似如下命令查找文件的时候会无内容输出
find /boot -size -1k
find /boot -size -1M
find /boot -size -1G
我们可以替换成如下命令来解决此bug
find /boot -size -1024b
find /boot -size -1024k
find /boot -size -1024M
发布于 2023-06-29 244 次阅读
在使用类似如下命令查找文件的时候会无内容输出
find /boot -size -1k
find /boot -size -1M
find /boot -size -1G
我们可以替换成如下命令来解决此bug
find /boot -size -1024b
find /boot -size -1024k
find /boot -size -1024M
Comments NOTHING