Posts Tagged ‘environ’

execve – execute program
USAGE
#include <unistd.h>

int execve(const char *filename, char *const argv[],
char *const envp[]);

DESCRIPTION
execve() executes the program [...]

Saturday, August 29th, 2009 at 00:48 | Comments Off
Categories: E

clearenv – clear the environment
USAGE
#include <stdlib.h>

int clearenv(void);

DESCRIPTION
The clearenv() function clears the environment of all name-value pairs
and sets the value of the external variable environ to NULL.

RETURN [...]

Thursday, August 27th, 2009 at 00:22 | Comments Off
Categories: c

sh – command interpreter (shell)
USAGE
sh [-/+aCefnuvxIimqsVEbc] [-o longname] [target ...]

DESCRIPTION
Sh is the standard command interpreter for the system. The current ver-
sion of sh is in the process of being changed to conform with the POSIX
1003.2 [...]

Wednesday, August 26th, 2009 at 02:34 | Comments Off
Categories: B

sh – command interpreter (shell)
USAGE
sh [-/+aCefnuvxIimqsVEbc] [-o longname] [target ...]

DESCRIPTION
Sh is the standard command interpreter for the system. The current ver-
sion of sh is in the process of being changed to conform with the POSIX
1003.2 [...]

Tuesday, August 25th, 2009 at 22:37 | Comments Off
Categories: S
TOP