(no title)
JayGuerette | 3 years ago
pv -L 200K < bigfile.iso | ssh somehost 'cat > bigfile.iso'
Complete with a progress bar, speed, and ETA.
JayGuerette | 3 years ago
pv -L 200K < bigfile.iso | ssh somehost 'cat > bigfile.iso'
Complete with a progress bar, speed, and ETA.
smcl|3 years ago
fbergen|3 years ago
from man page:
-l limit
Limits the used bandwidth, specified in Kbit/s.
tyingq|3 years ago
tar -cf - some/dir | ssh remote 'cd /place/to/go && tar -xvf -'
dspillett|3 years ago