Pawka's Cave in Internets

TIL: Forward data to CURL from STDIN

curl can read data from STDIN when --data @- is provided as parameter:

$ echo "Hi" | curl http://theurl.com -d @-

#cli #curl #en #til