Tchater maintenant avec le support
Tchattez avec un ingénieur du support

Privilege Manager for Unix 7.2.1 - Administration Guide

Introducing Privilege Manager for Unix Planning Deployment Installation and Configuration Upgrade Privilege Manager for Unix System Administration Managing Security Policy The Privilege Manager for Unix Security Policy Advanced Privilege Manager for Unix Configuration Administering Log and Keystroke Files InTrust Plug-in for Privilege Manager for Unix Troubleshooting Privilege Manager for Unix Policy File Components Privilege Manager for Unix Variables
Variable names Variable scope Global input variables Global output variables Global event log variables PM settings variables
Privilege Manager for Unix Flow Control Statements Privilege Manager for Unix Built-in Functions and Procedures
Environment functions Hash table functions Input and output functions LDAP functions LDAP API example List functions Miscellaneous functions Password functions Remote access functions String functions User information functions Authentication Services functions
Privilege Manager for Unix programs Installation Packages

join

Syntax
string join( list X [, string delimiter] )
Description

join returns a string constructed by concatenating each element of list X. Each element of the string is separated by delimiter. The default delimiter is a space character.

Example
trustedusers={"jamie", "cory", "robyn"}; 
print(join(trustedusers, "\n")); 

Prints the following string:

jamie 
cory 
robyn
Related Topics

append

insert

length

Syntax
int length( list|string X )
Description

length returns the number of elements in the specified list or the number of characters in the specified string.

Example
trustedusers={"jamie", "cory", "robyn"}; 
print(length(trustedusers)); 

lsubst

Syntax
string lsubst( list X, string pattern, string replacement )
Description

lsubst substitutes part of a string with another string throughout all or a specified part of a list X.

Example
print(lsubst({"xxxonexxx","xxxonexxx"},"one","two")); 

#prints the following list 
#"{xxxtwoxxx,xxxtwoxxx}" 

range

Syntax
list range( list X, int begin, int end )
Description

The range function returns a subset of the elements from list X. The subset of elements in the range specified by begin and end. Any value for end greater than the length of the list is the same as end.

Example
trustedusers={"jamie", "cory", "robyn"}; 
a=range(trustedusers, 1, 2); 

The value of a is set to: {"cory", "robyn"}

Documents connexes

The document was helpful.

Sélectionner une évaluation

I easily found the information I needed.

Sélectionner une évaluation