Tagged Questions
3
votes
7answers
5k views
How do I get the output of curl into a variable in Perl if I invoke it using backtics?
I'm trying to get the response of a curl call into a variable in perl.
my $foo = `curl yadd yadda`;
print $foo;
does not work. When I run this at the command line the curl call prints all its ...
0
votes
2answers
618 views
creating a file downloading script with checksum verification
I want to create a shellscript that reads files from a .diz file, where information about various source files are stored, that are needed to compile a certain piece of software (imagemagick in this ...