Help for this page

Select Code to Download


  1. or download this
    C:\_32>perl -le "open D, '<','test.txt' or die $!; print 'dir' if defi
    +ned telldir D; print 'DONE';"
    DONE
    ...
    C:\_32>perl -le "opendir D, 'comp' or die $!; print 'dir' if defined t
    +elldir D; print 'DONE';"
    dir
    DONE
    
  2. or download this
    C:\_32>perl -le "open D, '<','test.txt' or die $!; print 'dir' if defi
    +ned telldir $x; print 'DONE';"
    Bad symbol for dirhandle at -e line 1.