- 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;"
- 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
- 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;"
- 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.
- or download this
perl -le " print 'x',POSIX::O_RDWR;"
perl -le " use POSIX; print 'x',POSIX::O_RDWT;"
- 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