bash curl code example
Example: curl command
#usage:
curl
#it returns the raw text of the page (or anything else) at in the internet
#to stdout
#examples:
#put the output into
curl >
#to search for
curl | grep //
#to uncompress the output
curl | gunzip
#you get the hang of it.
#helpful if you are testing a server :)
#be sure to be on bash or powershell!