rsync copy while displaying progress
To copy a file where source and destination are on the same host:
rsync -av --progress source_file_path destination_directory
To copy a file where source is on a server and destination is on your local host:
rsync -av --progress user@ip_address:source_file_path destination_directoryrsync copy while displaying progress ,