bat
bat copied to clipboard
Making HTTP requests with an array of parameters
With bat is it possible to build a HTTP request that parameter arrays?
Example: bat :8888 foo=val1 foo=val2 bar=val3 should result in a URL like localhost:8888?foo=val1&foo=val2&bar=val3
Currently when I tried using that above syntax I only get one parameter with what ever the last value was.