in this case rsync used some arguments: -r, --recursive recurse into directories -v, --verbose increase verbosity -e, --rsh=COMMAND specify the remote shell to use (which in my case it was ssh) --progress show progress during transfer
So basically, put --progress after your rsync command or you can create an alias like this:
$ alias rsync='rsync --progress' $ alias rsync alias rsync='rsync --progress'
You can add this alias to your ~/.profile and everytime you will be using rsync command, the progress bar will be shown durring file transfer.
Designed and developed by Andrei Manescu. Optimized for Mozilla Firefox.
Copyright 2007 Andrei Manescu
All trademarks and copyrights on this page are owned by their respective owners. Comments are owned by those who posted them.