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.
在 Debian Squeeze 上,我有一个文件正在.从./copy. 如果我运行,watch du我可以看到两个目录的大小随时间而变化。如何解析输出,du以便我可以看到文件副本的百分比和 eta?请注意,在这种情况下,复制将./copy在大小为 的一半时完成.,因为.包含./copy。
.
./copy
watch du
du
您可以使用 pv:pv testfile > copy/testfile或 rsync: rsync --progress testfile copy/。
pv testfile > copy/testfile
rsync --progress testfile copy/