$PID
( -- pid )
=> "EXTENSIONS"
calls system's getpid
primitive code = [p4_getpid]
$UID
( -- val )
=> "EXTENSIONS"
calls system's getuid
primitive code = [p4_getuid]
$EUID
( -- val )
=> "EXTENSIONS"
calls system's geteuid
primitive code = [p4_geteuid]
$GID
( -- val )
=> "EXTENSIONS"
calls system's getgid
primitive code = [p4_getgid]
UMASK
( val -- ret )
=> "EXTENSIONS"
calls system's umask
primitive code = [p4_umask]
$HOME
( -- str-ptr str-len )
=> "EXTENSIONS"
calls system's getenv(HOME)
primitive code = [p4_home]
$USER
( -- str-ptr str-len )
=> "EXTENSIONS"
calls system's getenv(USER)
primitive code = [p4_user]
$CWD
( -- str-ptr str-len )
=> "EXTENSIONS"
calls system's getcwd
primitive code = [p4_cwd]
PWD
( -- )
=> "EXTENSIONS"
calls system's getcwd
and prints it to the screen
: PWD $CWD TYPE ;
primitive code = [p4_pwd]
RM
=> "EXTENSIONS"
(no description)
compiling word = [p4_remove]
TOUCH
=> "EXTENSIONS"
(no description)
compiling word = [p4_touch]
CHDIR
( bstring -- )
=> "EXTENSIONS"
change the current directory.
( (under VxWorks it is global! do not use in scripts!!) )
primitive code = [p4_chdir]
RMDIR
=> "EXTENSIONS"
(no description)
compiling word = [p4_rmdir]
MKDIR
=> "EXTENSIONS"
(no description)
compiling word = [p4_md]
LN
=> "EXTENSIONS"
(no description)
compiling word = [p4_link]
MV
=> "EXTENSIONS"
(no description)
compiling word = [p4_mv]
LL
=> "EXTENSIONS"
(no description)
compiling word = [p4_ll]
LS
=> "EXTENSIONS"
(no description)
compiling word = [p4_ls]
CP
=> "EXTENSIONS"
(no description)
compiling word = [p4_cp]