til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

More POST parameters

Using curl for fast assertion of some HTTP based services is nifty.

One thing, which was not completely clear for me from the man-page is how to provide more than one parameter.

$ curl -F foo=bar https://someurl/

But I just tried using more than one -F flag and it worked like a charm

$ curl -F foo=bar -F baz=foo https://someurl/