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.
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.
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
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.