csh
csh( [t_command] ) =>t/nil
Description
Starts the UNIX C-shell as a process to execute a command string.
Identical to the sh function, but invokes the C-shell (csh) rather than the Bourne-shell (sh).
Arguments
Value Returned
|
The exit status of executing the given shell command is not |
Examples
The following example creates a sub-directory called tmp in your home directory.
csh( "mkdir ~/tmp" )
=> t
Related Topics
Return to top