echo [options] [strings]
Write each string to standard output, separated
by spaces and terminated by a newline. If no strings are supplied,
echo a newline. (See also echo in
Chapter 3.)
Options
- -e
-
Enable interpretation of escape characters:
- \a
-
Audible alert
- \b
-
Backspace
- \c
-
Suppress the terminating newline (same as -n)
- \e
-
Escape character
- \f
-
Form feed
- \n
-
Newline
- \r
-
Carriage return
- \t
-
Horizontal tab
- \v
-
Vertical tab
- \\
-
Backslash
- \nnn
-
The character in the ASCII set corresponding to the octal number
nnn.
- \xnn
-
The character in the ASCII set corresponding to the hexadecimal
number nn (1 or 2 hex digits).
- -n
-
Do not append a newline to the output.
- -E
-
Disable interpretation of escape characters.
fc [options] [first] [last]
fc -s [oldpattern=newpattern] [command]
Display or edit commands in the history list. (Use only one of
-l or -e.) fc
provides capabilities similar to the C shell's
history and ! syntax. first and
last are numbers or strings specifying the range
of commands to display or edit. If last is
omitted, fc applies to a single
command (specified by first). If both
first and last are omitted,
fc edits the previous command or
lists the last 16. A negative number is treated as an offset from the
current command. The second form of fc takes a history
command, replaces old
string with new string, and executes the
modified command. If no strings are specified,
command is reexecuted. If no
command is given either, the previous command is
reexecuted. command is a number or string like
first. See earlier examples under Section 7.5.
Options
- -e [editor]
-
Invoke editor to edit the specified history
commands. The default editor is set by the shell
variable FCEDIT. If FCEDIT is not set, the value of EDITOR is used, or vi if neither is set.
- -l [first last]
-
List the specified command or range of commands, or list the last 16.
- -n
-
Suppress command numbering from the -l listing.
- -r
-
Reverse the order of the -l listing.
- -s oldpattern=newpattern
-
Edit command(s), replacing all occurrences of the specified old
pattern with the new pattern. Then reexecute.
jobs [options] [jobIDs]
List all running or stopped jobs, or those specified by
jobIDs. For example, you can check whether a
long compilation or text format is still running. Also useful before
logging out. See also Section 7.6 earlier in this chapter.
Options
- -l
-
List job IDs and process group IDs.
- -n
-
List only jobs whose status has changed since last notification.
- -p
-
List process group IDs only.
- -r
-
List active, running jobs only.
- -s
-
List stopped jobs only.
- -x command [arguments]
-
Execute command. If jobIDs
are specified, replace them with command.
kill [options] IDs
Terminate each specified process ID or job ID. You must own the
process or be a privileged user. See also Section 7.6 and the killall command in Chapter 3.
Options
- -signal
-
The signal number (from ps -f) or
name (from kill -l). The default is
TERM (signal number 15). With a signal number of 9, the kill is
unconditional. If nothing else works to kill a process, kill -9 almost always kills it, but does not
allow the process any time to clean up.
- --
-
Consider all subsequent strings to be arguments, not options.
- -l [arg]
-
With no argument, list the signal names. (Used by itself.) The
argument can be a signal name or a number representing either the
signal number or the exit status of a process terminated by a signal.
If it is a name, the correspoding number is returned; otherwise, the
corresponding name is returned.
- -n signum
-
Specify the signal number to send.
- -s signal
-
Specify signal. May be a signal name or number.