Q:

curl command in linux

#usage:
curl <url>
#it returns the raw text of the page (or anything else) at <url> in the internet
#to stdout
#examples:
#put the output into <file>
curl <url> > <file>
#to search for <pattern>
curl <url> | grep /<pattern>/
#to uncompress the output
curl <url> | gunzip

#you get the hang of it.

#helpful if you are testing a server :)
#be sure to be on bash or powershell!
1
curl https://www.geeksforgeeks.org
0

New to Communities?

Join the community