Help for this page

Select Code to Download


  1. or download this
    perl -le "            use POSIX; print 'x',POSIX::O_RDWR();"
    perl -le "use strict; use POSIX; print 'x',POSIX::O_RDWR();"
    perl -le "            use POSIX; print 'x',POSIX::O_RDWR;"
    perl -le "use strict; use POSIX; print 'x',POSIX::O_RDWR;"
    
  2. or download this
     > perl -le "            use POSIX; print 'x',POSIX::O_RDWR();"
    x2
    ...
    x2
     > perl -le "use strict; use POSIX; print 'x',POSIX::O_RDWR;"
    x2
    
  3. or download this
    perl -le "                       print 'x',POSIX::O_RDWR();"
    perl -le "            use POSIX; print 'x',POSIX::O_RDWT();"
    ...
    perl -le "use strict; use POSIX; print 'x',POSIX::O_RDWT();"
    perl -le "use strict;            print 'x',POSIX::O_RDWR;"
    perl -le "use strict; use POSIX; print 'x',POSIX::O_RDWT;"
    
  4. or download this
     > perl -le "                       print 'x',POSIX::O_RDWR();"
    Undefined subroutine &POSIX::O_RDWR called at -e line 1.
    ...
     > perl -le "use strict; use POSIX; print 'x',POSIX::O_RDWT;"
    Bareword "POSIX::O_RDWT" not allowed while "strict subs" in use at -e 
    +line 1.
    Execution of -e aborted due to compilation errors.
    
  5. or download this
    perl -le "                       print 'x',POSIX::O_RDWR;"
    perl -le "            use POSIX; print 'x',POSIX::O_RDWT;"
    
  6. or download this
     > perl -le "                       print 'x',POSIX::O_RDWR;"
    xPOSIX::O_RDWR
     > perl -le "            use POSIX; print 'x',POSIX::O_RDWT;"
    xPOSIX::O_RDWT