Difference between revisions of "GETGID()"

From Lianjapedia
Jump to: navigation, search
(Description)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
Function to get group identity
+
Function to get Linux group identity
  
 
==Syntax==
 
==Syntax==
Line 9: Line 9:
  
 
==Description==
 
==Description==
The GETGID() function returns the group number of the user as a decimal value.
+
The GETGID() function returns the group number of the current Linux user as a decimal value.
 +
 
 +
Note: this refers to the OS user account on Linux, not the Lianja [[Users and Roles]].
  
 
==Example==
 
==Example==
Line 21: Line 23:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Environment Functions]]
 
[[Category:Environment Functions]]
 +
[[Category:Lianja VFP Extensions]]
 +
[[Category:VFP Function Extensions]]

Latest revision as of 12:17, 17 December 2021

Purpose

Function to get Linux group identity

Syntax

GETGID()

See Also

ACCESS(), GETENV(), GETGRNAM(), GETPID(), GETUID(), PUTENV(), STR()

Description

The GETGID() function returns the group number of the current Linux user as a decimal value.

Note: this refers to the OS user account on Linux, not the Lianja Users and Roles.

Example

if getgid() > 100 and getgid() < 200
//...
endif