Help for this page

Select Code to Download


  1. or download this
    #$files[0] = '/usr/local/bin/foobar/a.html'
    #$files[1] = '/usr/local/bin/foobar/b.html'
    ...
    #$files[3] = '/usr/local/bin/foobar/d.html'
    #$files[4] = '/usr/local/bin/foobar/e.html'
    #$files[5] = '/usr/local/bin/foobar/f.html'
    
  2. or download this
    $tracker =
    <<EOQ;
    ...
     
    $path = "/usr/local/bin/foobar/";
    
  3. or download this
    @ttt = split /<br>\n/, $tracker;
     
    for (@ttt) {
        print "$_\n";
    }
    
  4. or download this
    print join ':', split / */, 'hi there';
    
  5. or download this
    @files = join split /<br>\n/, $tracker, $path;
     
    foreach (@files) {
        print "$_\n"
    }