Rsync limit pobieranie
rsync -a --bwlimit=10240 /folder/to/copy user@somehost:/new/folder/location
# The bwlimit parameter sets the limit in terms of kilobytes.
# In the command above it is throttled to 10MB/sec.
Foolish Flatworm