6

sometimes with large files it takes a while and some sort of progress bar to know that its still working would be nice.

Nathan Osman
  • 32,155
user218314
  • 305
  • 1
  • 5
  • 16

2 Answers2

11

rsync --progress $SRC $DEST can show you the percentage of what has been copied so far.

Dr.Tower
  • 419
  • 2
  • 7
-3

Try -v after the command to do your command in verbose mode.

16trohrt
  • 322