6

I want to copy a folder with some kind of progress bar. I tried "pv" (Pipe Viewer) but it seems there is no way to copy a folder.

Actually I'm not interested in using a script for pv - I would prefer some 'ready-to-go' package.

Lucas
  • 403

2 Answers2

4

You could try rsync, it has a --progress option and it can copy recursively -r and -v will add more output.

rsync -r --progress srcdir destdir
X Tian
  • 10,463
  • 7
    This gives per file progress... Pretty useless for me, as I want to know when everything finishes – Cookie Jun 17 '15 at 08:16
0

Have you tried rsync with the --progress option? You can use rsync locally - doesn't need to be across a network. Here are some examples.

Geeb
  • 2,131
  • 2
  • 16
  • 17