How do I write a Perl script to use curl to process a URL?

后端 未结 3 1711
我在风中等你
我在风中等你 2021-02-20 16:49

I have a very simple task. I have a crontab that will run a script every hour. The script is meant to simply process a URL.

This is what I have. It doesn\'t work. I get

3条回答
  •  无人及你
    2021-02-20 17:37

    You can either use curl via backticks

    my $curl=`curl http://whatever`
    

    or you can use WWW::Curl.

提交回复
热议问题