curl get and post methodthe differenceGETcurl -o output-path URL This will retrieve a get method url into output-path
POSTcurl -d url-encoded-data -o output-path URL This will retrieve a POST method url into output-path using url-encoded-data. |