Will Terminal show a progress bar when I copy with "cp"?

Is is possible to display a progress bar when copying files in Terminal using cp?


Solution 1:

You can use rsync instead.

rsync --progress /copy/from /copy/to

Solution 2:

During cp, CtrlT displays the current percentage (on macOS at least)

Solution 3:

If you are copying large files or directories using cp, you can open up 'Activity Monitor', go to the 'Disk' tab and look for the process 'cp'. Here you can keep track of how many bytes have been written since the last boot, giving you a rough idea of the progress. (OS X 10.10).

Hope that helps!