Mercurial > hg > Members > kono > nitros9-code
comparison docs/nitros9guide/chap4.chapter @ 975:c565a4700689
The entitity replstart was replaced with <replaceable>
author | roug |
---|---|
date | Sat, 01 Feb 2003 20:25:53 +0000 |
parents | 2e21fb7216af |
children | cc153d1671f7 |
comparison
equal
deleted
inserted
replaced
974:febcdde1466a | 975:c565a4700689 |
---|---|
260 <title>Sequential Execution</title> | 260 <title>Sequential Execution</title> |
261 <para> | 261 <para> |
262 Programs are executed sequentially when each is entered on a | 262 Programs are executed sequentially when each is entered on a |
263 separate line. More than one program can be specified on a single | 263 separate line. More than one program can be specified on a single |
264 shell command line by separating each | 264 shell command line by separating each |
265 &replstart;program name&replend; &replstart;parameters&replend; | 265 <replaceable>program name</replaceable> <replaceable>parameters</replaceable> |
266 from the next one with a ";" character. For example: | 266 from the next one with a ";" character. For example: |
267 </para> | 267 </para> |
268 <screen> | 268 <screen> |
269 OS9: COPY myfile /D1/newfile ; DIR >/p | 269 OS9: COPY myfile /D1/newfile ; DIR >/p |
270 </screen> | 270 </screen> |
463 <tgroup cols="2"> | 463 <tgroup cols="2"> |
464 <colspec colwidth="1.5in"/> | 464 <colspec colwidth="1.5in"/> |
465 <colspec colwidth="3.5in"/> | 465 <colspec colwidth="3.5in"/> |
466 <tbody> | 466 <tbody> |
467 <row> | 467 <row> |
468 <entry>chd &replstart;pathlist&replend;</entry> | 468 <entry>chd <replaceable>pathlist</replaceable></entry> |
469 <entry>change the working data directory to the directory | 469 <entry>change the working data directory to the directory |
470 specified by the pathlist (see 3.6).</entry> | 470 specified by the pathlist (see 3.6).</entry> |
471 </row> | 471 </row> |
472 <row> | 472 <row> |
473 <entry>chx &replstart;pathlist&replend;</entry> | 473 <entry>chx <replaceable>pathlist</replaceable></entry> |
474 <entry>change the working execution directory to the | 474 <entry>change the working execution directory to the |
475 directory specified by the pathlist (see 3.6).</entry> | 475 directory specified by the pathlist (see 3.6).</entry> |
476 </row> | 476 </row> |
477 <row> | 477 <row> |
478 <entry>ex name</entry> | 478 <entry>ex name</entry> |
488 <row> | 488 <row> |
489 <entry>* text</entry> | 489 <entry>* text</entry> |
490 <entry>comment: "text" is not processed.</entry> | 490 <entry>comment: "text" is not processed.</entry> |
491 </row> | 491 </row> |
492 <row> | 492 <row> |
493 <entry>kill &replstart;Proc ID&replend;</entry> | 493 <entry>kill <replaceable>Proc ID</replaceable></entry> |
494 <entry>abort the process specified.</entry> | 494 <entry>abort the process specified.</entry> |
495 </row> | 495 </row> |
496 <row> | 496 <row> |
497 <entry>setpr &replstart;proc ID&replend; &replstart;priority&replend;</entry> | 497 <entry>setpr <replaceable>proc ID</replaceable> <replaceable>priority</replaceable></entry> |
498 <entry>changes process' priority (see 5.1).</entry> | 498 <entry>changes process' priority (see 5.1).</entry> |
499 </row> | 499 </row> |
500 <row> | 500 <row> |
501 <entry>x</entry> | 501 <entry>x</entry> |
502 <entry>causes shell to abort on any error (default)</entry> | 502 <entry>causes shell to abort on any error (default)</entry> |
556 that are identical to command lines that are manually entered from | 556 that are identical to command lines that are manually entered from |
557 the keyboard. This technique is sometimes called "batch" or | 557 the keyboard. This technique is sometimes called "batch" or |
558 "background" processing. | 558 "background" processing. |
559 </para> | 559 </para> |
560 <para> | 560 <para> |
561 If the &replstart;program name&replend; specified on a shell command line can not be | 561 If the <replaceable>program name</replaceable> specified on a shell command line can not be |
562 found in memory or in the execution directory, shell will search the | 562 found in memory or in the execution directory, shell will search the |
563 data directory for a file with the desired name. If one is found, | 563 data directory for a file with the desired name. If one is found, |
564 shell will automatically execute it as a procedure file (see 2.0). | 564 shell will automatically execute it as a procedure file (see 2.0). |
565 </para> | 565 </para> |
566 <para> | 566 <para> |