Perl
  Home arrow Perl arrow Page 8 - Understanding Perl's Special Variables
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
PERL

Understanding Perl's Special Variables
By: icarus, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 34
    2003-07-10


    Table of Contents:
  • Understanding Perl's Special Variables
  • In Default
  • Input...
  • ...And Output
  • Getting Into An Argument
  • The Right Path
  • To Err Is Human
  • A Question Of Ownership
  • Rank And File
  • Calling For A Translator
  • End Zone

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Understanding Perl's Special Variables - A Question Of Ownership
    ( Page 8 of 11 )

    You can obtain information on the user and group the Perl script is running
    as, with the following four variables:

    $< - the real UID of the process

    $> - the effective UID of the process

    $) - the real GID of the process

    $( - the effective GID of the process

    A difference between "real" and "effective" IDs appears when you use the
    setuid() or setgid() command to change the user or group. The "real" ID is
    always the one prior to the setuid() or setgid() call; the "effective" one
    is the one you've changed into following the call.

    Consider the following example, which demonstrates:


    #!/usr/bin/perl

    # print real UID
    print "Real UID: $<\n";

    # print real GID
    print "Real GID: $(\n";

    # print effective UID
    print "Effective UID: $>\n";

    # print effective GID
    print "Effective GID: $)\n";

    Here's the output:


    Real UID: 515
    Real GID: 100 514 501 100
    Effective UID: 515
    Effective GID: 100 514 501 100

    Notice that the $) and $( commands return a list of all the groups the user
    belongs to, not just the primary group.

    Of course, most often this is not very useful by itself. What you really
    need is a way to map the numeric IDs into actual user and group names. And
    Perl comes with built-in functions to do this - consider the following
    example, which illustrates:


    #!/usr/bin/perl

    # set record separator
    $\=" ";

    # print user and group
    print "This script is running as " . getpwuid($>) . " who belongs to the
    following groups:";

    foreach (split(" ", $))) { print scalar(getgrgid($_)); };

    Here's the output:


    This script is running as john who belongs to the following groups: users
    software apps



     
     
    >>> More Perl Articles          >>> More By icarus, (c) Melonfire
     

       

    PERL ARTICLES

    - More Perl Bits
    - Perl, Bit by Bit
    - Basic Charting with Perl
    - Using Getopt::Long: More Command Line Option...
    - Command Line Options in Perl: Using Getopt::...
    - Web Access with LWP
    - More Templating Tools for Perl
    - Site Layout with Perl Templating Tools
    - Build a Perl RSS Aggregator with Templating ...
    - Looping, Security, and Templating Tools
    - Perl: Bon Voyage Lists and Hashes
    - Templating Tools
    - Perl: Number Crunching
    - Perl Debuggers in Detail
    - Debugging Perl





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek