Help for this page

Select Code to Download


  1. or download this
    image: path/to/image.jpg
    attribute1: value
    ...
    ----------
    image: path/to/next/image.jpg
    [...]
    
  2. or download this
        while (my $line = <FILE>) {
            $line =~ /(.*?): (.*?)$/m;
    ...
                    while ($_ = <FILE>) { last if /^--/; }
                    next;
                }