Linux CP command - Estimate MBs
-
Say I wanted to copy from one external disk to another, using a GUI I get the MB/s.
If I wanted to do the same operation, but with the CLI how can I see the MB/s?
-
using
rsync --progress
provides that information -
While that would work, it doesn't answer my question.
-
@DustinB3403 said in Linux CP command - Estimate MBs:
While that would work, it doesn't answer my question.
cp itself doesn't provide progress reporting. The GUI does this by not using cp.
-
You can use cp and see progress using a separate tool, like progress. But cp itself can't do it.
-
@scottalanmiller said in Linux CP command - Estimate MBs:
You can use cp and see progress using a separate tool, like progress. But cp itself can't do it.
Gotcha.