Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Diff between 'print POSIX::cuserid' and 'use POSIX; print cuserid'

by linuxer (Curate)
on Jan 08, 2013 at 00:10 UTC ( [id://1012133]=note: print w/replies, xml ) Need Help??


in reply to Diff between 'print POSIX::cuserid' and 'use POSIX; print cuserid'

In your first example, you did a use POSIX; in the second, you did not. Why?

Without loading POSIX you won't be able to call a function like POSIX::cuserid.

Enable strictwarnings and see yourself what happens:
$ perl -wE 'say POSIX::cuserid' Name "POSIX::cuserid" used only once: possible typo at -e line 1. say() on unopened filehandle cuserid at -e line 1.
But with loading POSIX:
$ perl -MPOSIX -wE 'say POSIX::cuserid' linuxer

Updates

  • replaced strict with warnings; removed strict from code examples; the warning is the crucial part.

Replies are listed 'Best First'.
Re^2: Diff between 'print POSIX::cuserid' and 'use POSIX; print cuserid'
by wsanders (Novice) on Jan 08, 2013 at 21:10 UTC
    Thanks, yes, so in #2 POSIX isn't loaded, so perl -e 'print POSIX::cuserid' should return nothing, actually. That's the answer. There is something odd about this user's environment that is causing it to print his username. In *my* environment, and root's, it behaves the way it is supposed to. Not going to investigate further.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1012133]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-23 05:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found