cURL & wget

cURL - Client for URLs

Syntax
curl IPorURL                  #Prints page source
curl IPorURL -o result.txt    #Saves the result on a file
curl -s IPorURL               #Silent mode, omits progress information

Examples
curl -s IP/file.xml | xmllint --format -  #Prints .xml file in an easy to read format

Last updated