diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2000-03-02 14:54:02 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2000-03-02 14:54:02 +0000 |
commit | 244b8ead7d31895ea1d7cfb075f4f7b33df35b0f (patch) | |
tree | 2643b52af6138b0f24a698abf3673abbbf78fc7d /bin/csh | |
parent | b751643913f37cd82cb0231b0c05564aad5a23b4 (diff) | |
download | FreeBSD-src-244b8ead7d31895ea1d7cfb075f4f7b33df35b0f.zip FreeBSD-src-244b8ead7d31895ea1d7cfb075f4f7b33df35b0f.tar.gz |
Remove more single-space hard sentence breaks.
Diffstat (limited to 'bin/csh')
-rw-r--r-- | bin/csh/USD.doc/csh.2 | 3 | ||||
-rw-r--r-- | bin/csh/USD.doc/csh.3 | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/bin/csh/USD.doc/csh.2 b/bin/csh/USD.doc/csh.2 index 18d9439..043b73f 100644 --- a/bin/csh/USD.doc/csh.2 +++ b/bin/csh/USD.doc/csh.2 @@ -678,7 +678,8 @@ the same until the job terminates and then are re-used. .PP When a job is started in the backgound using `&', its number, as well as the process numbers of all its (top level) commands, is typed by the shell -before prompting you for another command. For example, +before prompting you for another command. +For example, .DS % ls \-s | sort \-n > usage & [2] 2034 2035 diff --git a/bin/csh/USD.doc/csh.3 b/bin/csh/USD.doc/csh.3 index 6a85fe0..083fbcc 100644 --- a/bin/csh/USD.doc/csh.3 +++ b/bin/csh/USD.doc/csh.3 @@ -224,7 +224,8 @@ is quite special and is replaced by the next line of input read from the shell's standard input (not the script it is reading). This is useful for writing shell scripts that are interactive, reading commands from the terminal, or even writing a shell script that -acts as a filter, reading lines from its input file. Thus the sequence +acts as a filter, reading lines from its input file. +Thus the sequence .DS echo 'yes or no?\ec' set a=($<) |