Piping rdup -c output right into rdup-up
rdup -c /dev/null ~/bin | ./rdup-up -t /vol/backup
fails with the following error:
rdup-up: First character should '-' or '+', `01BLOCK00000' at line: 8
This was reported to me by Jared Henley. It is fixed with this commit
You can work around it with, by putting rdup-tr in the pipeline, like
so:
rdup /dev/null ~/bin | rdup-tr | ./rdup-up -t /vol/backup
Note: rdup is called without the -c flag!
I wanted to release a new version of rdup anyhow, so expect a 0.9.1 release soonish.

