HP-UX Reference (11i v3 07/02) - 7 Device (Special) Files, 9 General Information, Index (vol 10)
p
glossary(9) glossary(9)
prompt
The characters displayed by the shell on the terminal indicating that the system is ready for a command.
The prompt is usually a dollar sign (
$) for ordinary users (% in the C shell) and a pound sign (
#) for the
superuser, but you can redefine it to be any string by setting the appropriate shell variable (see sh(1) and
related entries). See also secondary prompt.
quit signal
The
SIGQUIT signal (see signal(2). The quit signal is generated by typing the character defined by the
teletype handler as your quit signal. (See stty(1), ioctl(2), and termio(7).) The default is the ASCII FS
character (ASCII value 28) generated by typing Ctrl-
\. This signal usually causes a running program to
terminate and generates a file containing the "core image" of the terminated process. The core image is
useful for debugging purposes. (Some systems do not support core images, and on those systems no such
file is generated.)
radix character
The character that separates the integer part of a number from the fractional part. For example, in Ameri-
can usage, the radix character is a decimal point, while in Europe, a comma is used.
raw disk
The name given to a disk for which there exists a character special file that allows direct transmission
between the disk and the user’s read or write buffer. A single read or write call results in exactly one I/O
call.
read-only file system
A characteristic of a file system that prevents file system modifications.
real group ID
A positive integer which is assigned to every user on the system. The association of a user and his or her
real group ID is done in the file
/etc/passwd . The modifier "real" is used because a user can also have
an effective group ID. The real group ID can then be mapped to a group name in the file
/etc/group ,
although it need not be. Thus, every user is a member of some group (which can be nameless), even if that
group has only one member.
Every time a process creates a child process (via fork(2)), that process has a real group ID equal to the
parent process’s real group ID. This is useful for determining file access privileges within the process.
real user ID
A positive integer which is assigned to every user on the system. A real user ID is assigned to every valid
login name in the file
/etc/passwd . The modifier "real" is used because a user can also have an
effective user ID (see effective user ID).
Every time a process creates a child process (via fork(2)), that process has a real user ID equal to the
parent process’s real user ID. This is useful for determining file access privileges within the process.
regular expression
A string of zero or more characters that selects text. All the characters contained in the string might be
literal, meaning that the regular expression matches itself only; or one or more of the characters might be a
metacharacter, meaning that a single regular expression could match several literal strings. Regular
expressions are most often encountered in text editors (such as ed(1), ex(1), or vi(1)), where searches are
performed for a specific piece of text, or in commands that were created to search for a particular string in
a file (most notably grep(1)). Regular expressions are also encountered in the shell, especially when refer-
ring to file names on command lines.
regular file
A type of file that is a randomly accessible sequence of bytes, with no further structure imposed by the sys-
tem. Its size can be extended. A regular file is also called an ordinary file.
relative path name
A path name that does not begin with a slash (/). It indicates that a file’s location is given relative to
your current working directory, and that the search begins there (instead of at the root directory). For
example, dir1/file2 searches for the directory dir1 in your current working directory; then dir1 is
searched for the file file2.
HP-UX 11i Version 3: February 2007 − 18 − Hewlett-Packard Company 263