mirror of
https://github.com/php/presentations.git
synced 2026-03-24 23:52:18 +01:00
10 lines
123 B
Perl
Executable File
10 lines
123 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use LWP::Simple;
|
|
|
|
die "URL to fetch is required!\n"
|
|
if scalar @ARGV < 1;
|
|
|
|
print get pop;
|