Recipes
For cURL
sending a file
curl -T <myfile> -Lv station307.com 2>&1 | grep located-at
streaming a file
tailf <myfile> \ | curl -T . -H "Transfer-Encoding: Chunked" -Lv station307.com 2>&1 \ | grep located-at
At the moment cURL doesn't allow to recover a stream after a client disconnects.
For Wget
sending a file
wget -S --post-file <myfile> station307.com 2>&1 | grep located-at
More recipes?
If you have suggestions for other recipes, drop me an email at station@synsere.com.