RNMnetwork/Part 1 - The worldwide neural control network/test.pl

12 lines
238 B
Perl
Raw Normal View History

2020-04-21 03:28:07 -04:00
#!perl
# slurp the entire file
local $/ = undef;
open INFILE, $ARGV[0] or die "Could not open file. $!";
$string = <INFILE>;
close INFILE;
while ($string =~ s/\*\*(.*)\*\* \[\[\d+\]\]\((.*)\)/<a href="$2">$1<\/a>/) {}
print "$string";