icon Top 9 categories map      RocketAware > Perl >

$EFFECTIVE_GROUP_ID
$EGID
$)

Tips: Browse or Search all pages for efficient awareness of Perl functions, operators, and FAQs.



Home

Search Perl pages


Subjects

By activity
Professions, Sciences, Humanities, Business, ...

User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...

Text Strings
Conversions, tests, processing, manipulation,...

Math
Integer, Floating point, Matrix, Statistics, Boolean, ...

Processing
Algorithms, Memory, Process control, Debugging, ...

Stored Data
Data storage, Integrity, Encryption, Compression, ...

Communications
Networks, protocols, Interprocess, Remote, Client Server, ...

Hard World
Timing, Calendar and Clock, Audio, Video, Printer, Controls...

File System
Management, Filtering, File & Directory access, Viewers, ...

    
$EFFECTIVE_GROUP_ID
$EGID
$)
The effective gid of this process. If you are on a machine that supports membership in multiple groups simultaneously, gives a space separated list of groups you are in. The first number is the one returned by getegid(), and the subsequent ones by getgroups(), one of which may be the same as the first number.

Similarly, a value assigned to ``$)'' must also be a space-separated list of numbers. The first number is used to set the effective gid, and the rest (if any) are passed to setgroups(). To get the effect of an empty list for setgroups(), just repeat the new effective gid; that is, to force an effective gid of 5 and an effectively empty setgroups() list, say

 $) = "5 5" 
.

(Mnemonic: parentheses are used to GROUP things. The effective gid is the group that's RIGHT for you, if you're running setgid.)

Note: ``$<'', ``$>'', ``$('' and ``$)'' can be set only on machines that support the corresponding set[re][ug]id() routine. ``$('' and ``$)'' can be swapped only on machines supporting setregid().

Source: Perl predefined variables
Copyright: Larry Wall, et al.
Next: $PROGRAM_NAME
$0


Previous: $REAL_GROUP_ID
$GID
$(




(Corrections, notes, and links courtesy of RocketAware.com)


[Overview Topics]

Up to: Process Limits: Identity




Rapid-Links: Search | About | Comments | Submit Path: RocketAware > Perl > perlvar/_EFFECTIVE_GROUP_ID.htm
RocketAware.com is a service of Mib Software
Copyright 2000, Forrest J. Cavalier III. All Rights Reserved.
We welcome submissions and comments