1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Fix 181 typos in user-facing documentation

(cherry picked from commit fe365afb433bb39d4f3a6b68b3fd8e8daf5370c8)
This commit is contained in:
Martijn Dekker 2020-02-26 22:20:02 +01:00
parent 2940b3f536
commit 9c75314c71
31 changed files with 181 additions and 181 deletions

View file

@ -298,7 +298,7 @@ before the first history command is created.
You can use printf with supports the %T format for time and date formatting.
For example, the format %(%H:%M:%S)T specifies time in hour, minute, second
format and if no argument is specifed, the current time is used. Thus setting
format and if no argument is specified, the current time is used. Thus setting
PS1='$(printf "%(%H:%M:%S)T" $' will output the time of day before the
$ prompt.
@ -452,7 +452,7 @@ time for i; do xxx;done.
<DT>When I run 'mv * ../elsewhere' I so that get '-ksh: mv: cannot execute &#0091;Arg list too long&#0093;', what causes this?<DD>
UNIX sytems have a limit to the space consumed by command arguments and
UNIX systems have a limit to the space consumed by command arguments and
environment variables when running commands that are not built into
the shell. The configuration parameter ARG_MAX defines this limit.
You can run 'getconf ARG_MAX' to find the limit for your system. Note
@ -569,7 +569,7 @@ and does not nest easily.
$(...) was added to ksh88 to
make command substitution easy to use.
`...` is provided
for backwords compatibility only.
for backwards compatibility only.
<DT>How can I tell if all the commands of a pipeline have succeeded?<DD>