#ifdef PFE_HAVE_PID
* $PID ( -- pid ) calls system's getpid
$PID
( -- pid )
getpid
EXTENSIONS shell ordinary primitive
$$
[] no special info, see general notes
EXTENSIONS shell obsolete forthword
#endif
#ifdef PFE_HAVE_UID
* $UID ( -- val ) calls system's getuid
$UID
( -- val )
getuid
* $EUID ( -- val ) calls system's geteuid
$EUID
geteuid
#ifdef PFE_HAVE_GID
* $GID ( -- val ) calls system's getgid
$GID
getgid
#ifdef PFE_HAVE_UMASK
* UMASK ( val -- ret ) calls system's umask
UMASK
( val -- ret )
umask
* $HOME ( -- str-ptr str-len ) calls system's getenv(HOME)
$HOME
( -- str-ptr str-len )
getenv(HOME)
* $USER ( -- str-ptr str-len ) calls system's getenv(USER)
$USER
getenv(USER)
* $CWD ( -- str-ptr str-len ) calls system's getcwd
$CWD
getcwd
* PWD ( -- ) calls system's getcwd and prints it to the screen : PWD $CWD TYPE ;
PWD
( -- )
: PWD $CWD TYPE ;
PARSE
RM [] no special info, see general notes EXTENSIONS shell compiling primitive TOUCH [] no special info, see general notes EXTENSIONS shell compiling primitive * CHDIR ( bstring -- ) change the current directory. (under VxWorks it is global! do not use in scripts!!) EXTENSIONS shell ordinary primitive CD [] no special info, see general notes EXTENSIONS shell obsolete forthword RMDIR [] no special info, see general notes EXTENSIONS shell compiling primitive MKDIR [] no special info, see general notes EXTENSIONS shell compiling primitive #ifdef PFE_HAVE_LINK /** mimics a unix'ish shell-command - PARSEs two filenames/dirnames */ LN [] no special info, see general notes EXTENSIONS shell compiling primitive #endif /* PFE_HAVE_LINK */ #ifndef NO_SYSTEM /** will invoke a shell-command with the command and a two filenames */ MV [] no special info, see general notes EXTENSIONS shell compiling primitive #endif #ifdef GOT_DIR /** mimics a unix'ish shell-command - PARSEs one filename/dirname */ LL [] no special info, see general notes EXTENSIONS shell compiling primitive LS [] no special info, see general notes EXTENSIONS shell compiling primitive #endif /* NO_SYSTEM */ /** mimics a unix'ish shell-command - PARSEs two filenames/dirname */
RM
EXTENSIONS shell compiling primitive
TOUCH
* CHDIR ( bstring -- ) change the current directory. (under VxWorks it is global! do not use in scripts!!)
CHDIR
( bstring -- )
CD
RMDIR
MKDIR
#ifdef PFE_HAVE_LINK
/** mimics a unix'ish shell-command -
PARSEs two filenames/dirnames */
LN
#endif /* PFE_HAVE_LINK */
/* PFE_HAVE_LINK */
#ifndef NO_SYSTEM
/** will invoke a shell-command with the command and a two filenames */
MV
#ifdef GOT_DIR
PARSEs one filename/dirname */
LL
LS
#endif /* NO_SYSTEM */
/* NO_SYSTEM */
PARSEs two filenames/dirname */
CP [] no special info, see general notes EXTENSIONS shell compiling primitive
CP