uesh
Micro-embedded shell (QNX OS)
Syntax:
uesh [script_file]
Runs on:
QNX OS
Options:
- script_file
- A file containing shell commands to execute.
Description:
The uesh utility provides a subset of the functionality found in the standard embedded shell, esh. You should find uesh useful for situations where memory requirements are limited. For example, you could use it to run a simple system initialization file for an embedded system.
- no pipes
- no aliases
- no filename- or command-completion
- no set command
For applications that require greater functionality, use esh or the full shell, sh.
Command-line format
command arg1 arg2 ... [redir-op file] [&]
- command
- The command to be executed. If it doesn't start with a slash, the command follows the path set by the PATH environment variable.
- redir-op file
- A redirection operator. When a command is invoked, three standard files
are set up in its environment. These files, standard input,
standard output, and standard error
(stdin, stdout, stderr), are usually
attached to the active terminal. You can redirect a command's standard
input, standard output, and standard error as follows:
Specifying: Will: <file Redirect standard input from this file. >file Redirect standard output to this file. If the file exists, it's overwritten; if the file doesn't exist, it's created. >>file Redirect standard output to this file. If the file exists, the information is appended to the end of the file; if the file doesn't exist, it's created. 2>file Do the same as >file, but for standard error. 2>>file Do the same as >>file, but for standard error. & If a command contains an unquoted &, then uesh doesn't wait for the command to complete execution but immediately moves on to process the next command. The command's standard input is redirected from /dev/null, and SIGINT and SIGQUIT are ignored.
Filename expansion
The uesh shell doesn't support filename expansion. Such
shorthands as *.c
for all files ended in .c
don't work.
Quoting
& \ " [ space
To suppress the special meaning of these characters and keep their literal meaning, use quoting.
To quote a sequence of characters or sequence of words, enclose the
sequence in double quotes. To quote a single character, use double
quotes or precede it with the escape character (\
).
- Escape character (backslash)
- The escape character (
\
) preserves the literal meaning of the next character. You can't obtain a single backslash by quoting\
with double quotes. To obtain a backslash, enter\\
instead. - Double quotes
- Enclosing characters and words in double quotes (
""
) preserves the literal meaning of all characters within double quotes, with the exception of the\
character. For example:
represents a single, five-character argument."ab cd"
Builtin commands
cd command
cd [directory]
Change the working directory of the current execution environment. If directory isn't specified, the value of the HOME environment variable becomes the new working directory.
emount command
emount special directory [fs_type]
- special
- The name of the special device.
- mountpoint
- Where to mount the device on your system.
- type
- The type of filesystem or manager to mount:
type: Filesystem or manager: cd
fs-udf.so dos
fs-dos.so nfs
fs-nfs3 qnx6
fs-qnx6.so (Power-Safe filesystem) udf
fs-udf.so The default is
qnx6
.
ewaitfor command
ewaitfor path [max_seconds [delay]]
- path
- The path to test.
- max_seconds
- The maximum number of seconds to wait for the file to appear. The default is 1 second.
- delay
- The number of milliseconds to wait between attempts. The default is 100 ms.
exec command
exec [command [argument...]]
Execute a command and/or manipulate file descriptors.
The exec command opens, closes, or copies file descriptors as specified by any I/O redirections given as part of argument. If a command is specified, that command is spawned as a replacement for uesh. Any specified arguments are passed to the spawned process.
exit command
exit [n]
Cause uesh to exit with the exit status specified by n. If you don't specify n, uesh exits with the status of the last command executed.
export command
export name[=word]...
export -p
Mark environment variables for export, which causes them to be in the environment of subsequently executed commands. If you specify the -p option, the names and values of all exported variables are written to standard output.
Examples:
uesh
Environment variables:
- HOME
- The pathname of the user's home directory
- LOGNAME
- The user's login name.
- PATH
- The directory search path used by uesh for locating executable programs.
To change PATH, you must use the export command.
If PATH isn't in the existing environment when uesh is invoked, it's set to /bin:/usr/bin. For more information on setting PATH, see
Setting PATH and LD_LIBRARY_PATH
in the Configuring Your Environment chapter of the QNX OS User's Guide. - SHELL
- The pathname of the user's preferred shell.
- TERM
- The terminal type.
- TMPDIR
- The pathname of a directory where utilities can create temporary files.
- TZ
- The timezone setting.