Can someone please explain what this is ?

  • sorrybookbroke@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    6 days ago

    Curl is a tool used to ask servers and websites for information from the command line. It outputs this information to you directly as stdout instead of just downloading a file to a given location. You can use pipes and redirections to work with this though

    Usually it’s used by developers.

    Personally, I use it to get files from github or websites. If can also be used to send stuff to a server.

    It’s a very simple tool that just sends the request and gives the answer. If you were to point it at a website you’d get back the code a browser would normally use to make the website on your end.