https://bugzilla.samba.org/show_bug.cgi?id=7120
--- Comment #2 from It is me <p...@mnet-online.de> 2013-03-05 15:15:51 UTC --- Hi, just a note, due to the fact I am also looking forward for this feature. I see two options regarding usability and scritablility. :) 1# Piping (not used up to now) mkfifo /tmp/bla echo "1000" > /tmp/bla cat /tmp/bla | rsync ... --bwlimit-stdin ... changing by just write to the fifo echo "50" > /tmp/bla 2# file and signal mktemp > /tmp/bla2 echo "1000" > /tmp/bla2 rsync ... -bwlimit-from=/tmp/bla2 .... & RSYNCPID=$! echo "50" > /tmp/bla2 kill -USR1 ${RSYNCPID} hope the thinking helps. Me. -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html