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.
我想使用“stat”检查目录 A 中的所有可用空间。然后我想使用'du'检查目录B的大小,如果目录A有足够的可用空间,那么我想将B复制到A中。
问题是我需要将哪些参数传递给“stat”和“du”命令,以便它们以相同的格式(节点、字节等)返回输出
在 Linux 上,一个目录中包含的文件没有限制,甚至一个目录中可以放置多少个文件也没有限制。这都可以在 linux 手册页中找到。
如果 A 所在的设备与 B 所在的设备不同,您可能会好奇 A 的设备上还有多少可用空间。为此,您使用:
stat --file-system A B