home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / elvis184.zip / doc / ex.ms < prev    next >
Text File  |  1995-05-26  |  21KB  |  636 lines

  1. .Go 3 "COLON MODE COMMANDS"
  2. .PP
  3. To use colon mode commands, you must switch from visual command
  4. mode to colon command mode.
  5. The visual mode commands to do this are ":" for a single colon command,
  6. or "Q" for many colon mode commands.
  7. .PP
  8. In general, command lines begin with 0, 1, or 2 line specifiers,
  9. followed by a command name, and perhaps some arguments after that.
  10. .PP
  11. Lines which don't access the text, such as ":quit", don't allow any
  12. line specifiers.
  13. Other commands, such as ":mark", only allow a single line specifier.
  14. Most commands, though, allow two line specifiers;
  15. the command is applied to all lines between the two specified lines,
  16. inclusive.
  17. The table below indicates how many line specifiers each command allows.
  18. .PP
  19. Command names can usually be abbreviated; in the table below, the
  20. extra part of command names has is enclosed in square brackets.
  21. Square brackets are also used to indicate which arguments are optional.
  22. .ID
  23. .ps
  24. .in 0.8i
  25. .ta 2i 3.i
  26. .\" NOTE: The following macro is used to output a single line of the
  27. .\" command chart.  Its usage is:
  28. .\"
  29. .\"        .Cm <linespecs> <name> <arguments>...
  30. .\"
  31. .de Cm
  32. .if "\\$1"0" \t\\$2\t\\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9
  33. .if "\\$1"1" \*s[line]\*S\t\\$2\t\\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9
  34. .if "\\$1"2" \*s[line][,line]\*S\t\\$2\t\\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9
  35. ..
  36. .if t .ds Q ``
  37. .if t .ds U ''
  38. .if n .ds Q "
  39. .if n .ds U "
  40. \*SLINES    COMMAND    ARGUMENTS\*s
  41. .Cm 0 ab[br] [short] [expanded form]
  42. .Cm 0 an[d] condition
  43. .Cm 1 a[ppend][!]
  44. .Cm 0 ar[gs] [files]
  45. .Cm 0 cc [files]
  46. .Cm 0 cd[!] [directory]
  47. .Cm 2 c[hange]
  48. .Cm 0 chd[ir][!] [directory]
  49. .Cm 2 co[py] line
  50. .Cm 0 col[or] [when] [[\*Qlight\*U] color] [\*Qon\*U color]
  51. .Cm 2 d[elete] [\*Ux]
  52. .Cm 0 dig[raph][!] [XX [Y]]
  53. .Cm 0 e[dit][!] [file]
  54. .Cm 0 el[se] commands
  55. .Cm 0 er[rlist][!] [errlist]
  56. .Cm 0 f[ile] [file]
  57. .Cm 2 g[lobal] /regexp/ command
  58. .Cm 0 if condition
  59. .Cm 1 i[nsert]
  60. .Cm 2 j[oin][!]
  61. .Cm 2 l[ist]
  62. .Cm 0 mak[e] [target]
  63. .Cm 0 map[!] key mapped_to
  64. .Cm 1 ma[rk]  \*Ux
  65. .Cm 0 mk[exrc]
  66. .Cm 2 m[ove] line
  67. .Cm 0 n[ext][!] [files]
  68. .Cm 0 N[ext][!]
  69. .Cm 2 nu[mber]
  70. .Cm 0 o[r] condition
  71. .Cm 0 po[p][!]
  72. .Cm 2 p[rint]
  73. .Cm 1 pu[t] [\*Ux]
  74. .Cm 0 q[uit][!]
  75. .Cm 1 r[ead] file
  76. .Cm 0 rew[ind][!]
  77. .Cm 0 se[t] [options]
  78. .Cm 0 so[urce] file
  79. .Cm 2 s[ubstitute] /regexp/replacement/[p][g][c]
  80. .Cm 2 t line
  81. .Cm 0 ta[g][!] tagname
  82. .Cm 0 th[en] commands
  83. .Cm 0 una[bbr] [short]
  84. .Cm 0 u[ndo]
  85. .Cm 0 unm[ap][!] key
  86. .Cm 0 ve[rsion]
  87. .Cm 2 v[global] /regexp/ command
  88. .Cm 0 vi[sual] [filename]
  89. .Cm 0 wq 
  90. .Cm 2 w[rite][!] [[>>]file]
  91. .Cm 0 x[it][!]
  92. .Cm 2 y[ank] [\*Ux]
  93. .Cm 2 ! command
  94. .Cm 2 < 
  95. .Cm 2 = 
  96. .Cm 2 > 
  97. .Cm 2 & 
  98. .Cm 0 @ "" \*Ux
  99. .DE
  100. .TA 8
  101. .NH 2
  102. Line Specifiers
  103. .PP
  104. Line specifiers are always optional.
  105. The first line specifier of most commands usually defaults to the current line.
  106. The second line specifier usually defaults to be the same
  107. as the first line specifier.
  108. Exceptions are :write, :global, and :vglobal, which act on all lines of the
  109. file by default, and :!, which acts on no lines by default.
  110. .PP
  111. If you use the visual V command to mark a range of lines, and then use the
  112. visual : command to execute a single ex command, then the default range
  113. affected by the ex command will be the visibly marked text.
  114. .PP
  115. Line specifiers consist of an absolute part and a relative part.
  116. The absolute part of a line specifier may be either an explicit line number,
  117. a mark, a dot to denote the current line, a dollar sign to denote the last
  118. line of the file, or a forward or backward search.
  119. .PP
  120. An explicit line number is simply a decimal number, expressed as a
  121. string of digits.
  122. .PP
  123. A mark is typed in as an apostrophe followed by a letter.
  124. Marks must be set before they can be used.
  125. You can set a mark in visual command mode by typing "m" and a letter,
  126. or you can set it in colon command mode via the "mark" command.
  127. .PP
  128. A forward search is typed in as a regular expression surrounded by
  129. slash characters; searching begins at the default line.
  130. A backward search is typed in as a regular expression surrounded by
  131. question marks; searching begins at the line before the default line.
  132. .PP
  133. If you omit the absolute part, then the default line is used.
  134. .PP
  135. The relative part of a line specifier is typed as a "+" or "-" character
  136. followed by a decimal number.
  137. The number is added to or subtracted from the absolute part
  138. of the line specifier to produce the final line number.
  139. .PP
  140. As a special case, the % character may be used to specify all lines of the file.
  141. It is roughly equivalent to saying 1,$.
  142. This can be a handy shortcut.
  143. .PP
  144. Some examples:
  145. .LD
  146. .ps
  147. .ta 0.5i 1.8i
  148.     :p    print the current line
  149.     :37p    print line 37
  150.     :'gp    print the line which contains mark g
  151.     :/foo/p    print the next line that contains "foo"
  152.     :$p    print the last line of the file
  153.     :20,30p    print lines 20 through 30
  154.     :1,$p    print all lines of the file
  155.     :%p    print all lines of the file
  156.     :/foo/-2,+4p    print 5 lines around the next "foo"
  157. .TA 8
  158. .DE
  159. .NH 2
  160. Text Entry Commands
  161. .if n .ul 0
  162. .ID
  163. .ps
  164. [line] append
  165. [line][,line] change ["x]
  166. [line] insert
  167. .DE
  168. .PP
  169. The \fBa\fRppend command inserts text after the specified line.
  170. .PP
  171. The \fBi\fRnsert command inserts text before the specified line.
  172. .PP
  173. The \fBc\fRhange command copies the range of lines into a cut buffer,
  174. deletes them, and inserts new text where the old text used to be.
  175. .PP
  176. For all of these commands, you indicate the end of the text you're
  177. inserting by hitting ^D or by entering a line which contains only a
  178. period.
  179. .NH 2
  180. Cut & Paste Commands
  181. .if n .ul 0
  182. .ID
  183. .ps
  184. [line][,line] delete ["x]
  185. [line][,line] yank ["x]
  186. [line] put ["x]
  187. [line][,line] copy line
  188. [line][,line] to line
  189. [line][,line] move line
  190. .DE
  191. .PP
  192. The \fBd\fRelete command copies the specified range of lines into a
  193. cut buffer, and then deletes them.
  194. .PP
  195. The \fBy\fRank command copies the specified range of lines into a cut
  196. buffer, but does *not* delete them.
  197. .PP
  198. The \fBpu\fRt command inserts text from a cut buffer after the
  199. specified line.
  200. .PP
  201. The \fBco\fRpy and \fBt\fRo commands yank the specified range of lines and
  202. then immediately paste them after some other line.
  203. .PP
  204. The \fBm\fRove command deletes the specified range of lines and then
  205. immediately pastes them after some other line.
  206. If the destination line comes after the deleted text,
  207. then it will be adjusted automatically to account for the deleted lines.
  208. .NH 2
  209. Display Text Commands
  210. .if n .ul 0
  211. .ID
  212. .ps
  213. [line][,line] print
  214. [line][,line] list
  215. [line][,line] number
  216. .DE
  217. .PP
  218. The \fBp\fRrint command displays the specified range of lines.
  219. .PP
  220. The \fBnu\fRmber command displays the lines, with line numbers.
  221. .PP
  222. The \fBl\fRist command also displays them, but it is careful to make
  223. control characters visible.
  224. .NH 2
  225. Global Operations Commands
  226. .if n .ul 0
  227. .ID
  228. .ps
  229. [line][,line] global /regexp/ command
  230. [line][,line] vglobal /regexp/ command
  231. .DE
  232. .PP
  233. The \fBg\fRlobal command searches through the lines of the specified range
  234. (or through the whole file if no range is specified)
  235. for lines that contain a given regular expression.
  236. It then moves the cursor to each of these lines and
  237. runs some other command on them.
  238. .PP
  239. The \fBv\fRglobal command is similar, but it searches for lines that \fIdon't\fR
  240. contain the regular expression.
  241. .NH 2
  242. Line Editing Commands
  243. .if n .ul 0
  244. .ID
  245. .ps
  246. [line][,line] join[!]
  247. [line][,line] ! program
  248. [line][,line] <
  249. [line][,line] >
  250. [line][,line] substitute /regexp/replacement/[p][g][c]
  251. [line][,line] &
  252. .DE
  253. .PP
  254. The \fBj\fRoin command catenates all lines in the specified range together
  255. to form one big line.
  256. If only a single line is specified, then the following line is catenated
  257. onto it.
  258. The normal ":join" inserts one or two spaces between the lines;
  259. the ":join!" variation (with a '!') doesn't insert spaces.
  260. .PP
  261. The \fB!\fR command runs an external filter program,
  262. and feeds the specified range of lines to it's stdin.
  263. The lines are then replaced by the output of the filter.
  264. A typical example would be ":'a,'z!sort" to sort the lines 'a,'z.
  265. .PP
  266. The \fB<\fR and \fB>\fR commands shift the specified range of lines left or right,
  267. normally by the width of 1 tab character.
  268. The "shiftwidth" option determines the shifting amount.
  269. .PP
  270. The \fBs\fRubstitute command finds the regular expression in each line,
  271. and replaces it with the replacement text.
  272. The "p" option causes the altered lines to be printed.
  273. The "g" option permits all instances of the regular expression
  274. to be found & replaced.
  275. (Without "g", only the first occurrence in each line is replaced.)
  276. The "c" option asks for confirmation before each substitution.
  277. .PP
  278. The \fB&\fR command repeats the previous substitution command.
  279. Actually, "&" is equivalent to "s//~/" with the same options as last time.
  280. It searches for the last regular expression that you specified for any purpose,
  281. and replaces it with the the same text
  282. that was used in the previous substitution.
  283. .NH 2
  284. Undo Command
  285. .if n .ul 0
  286. .ID
  287. .ps
  288. undo
  289. .DE
  290. .PP
  291. The \fBu\fRndo command restores the file to the state it was in before
  292. your most recent command which changed text.
  293. .NH 2
  294. Configuration & Status Commands
  295. .if n .ul 0
  296. .ID
  297. .ps
  298. map[!] [key mapped_to]
  299. unmap[!] key
  300. abbr [word expanded_form_of_word]
  301. unabbr word
  302. digraph[!] [XX [Y]]
  303. set [options]
  304. mkexrc
  305. [line] mark "x
  306. visual
  307. version
  308. [line][,line] =
  309. file [file]
  310. source file
  311. @ "x
  312. color [when] [["light"] color] ["on" color]
  313. .DE
  314. .PP
  315. The \fBma\fRp command allows you to configure \*E to recognize your function keys,
  316. and treat them as though they transmitted some other sequence of characters.
  317. Normally this mapping is done only when in the visual command mode,
  318. but with the [!] present it will map keys under input and replace modes as well.
  319. When this command is given with no arguments,
  320. it prints a table showing all mappings currently in effect.
  321. When called with two arguments, the first is the sequence that your
  322. function key really sends, and the second is the sequence that you want
  323. \*E to treat it as having sent.
  324. As a special case, if the first argument is
  325. a '#' sign followed by a number
  326. then \*E will map the corresponding function key;
  327. for example, ":map #7 dd" will cause the <F7> key to delete a line.
  328. Also, on some systems,
  329. ":map #7s ..." may map <Shift-F7>,
  330. ":map #7c ..." may map <Control-F7>, and
  331. ":map #7a ..." may map <Alt-F7>.
  332. .PP
  333. The \fBunm\fRap command removes key definitions that were made via the map command.
  334. .PP
  335. The \fBab\fRbr command is used to define/list a table of abbreviations.
  336. The table contains both the abbreviated form and the fully spelled-out form.
  337. When you're in visual input mode, and you type in the abbreviated form,
  338. \*E will replace the abbreviated form with the fully spelled-out form.
  339. When this command is called without arguments, it lists the table;
  340. '\"!!!
  341. with two or more arguments, the first argument is taken as the abbreviated
  342. form, and the rest of the command line is the fully-spelled out form.
  343. .PP
  344. The \fBuna\fRbbr command deletes entries from the abbr table.
  345. .PP
  346. The \fBdi\fRgraph command allows you to display the set of digraphs that \*E is
  347. using, or add/remove a digraph.
  348. To list the set of digraphs, use the digraph command with no arguments.
  349. To add a digraph, you should give the digraph command two arguments.
  350. The first argument is the two ASCII characters that are to be combined;
  351. the second is the non-ASCII character that they represent.
  352. The non-ASCII character's most significant bit is automatically set by the
  353. digraph command, unless to append a ! to the command name.
  354. Removal of a digraph is similar to adding a digraph, except that you should
  355. leave off the second argument.
  356. .PP
  357. The \fBse\fRt command allows you examine or set various options.
  358. With no arguments, it displays the values of options that have been changed.
  359. With the single argument "all" it displays the values of all options,
  360. regardless of whether they've been explicitly set or not.
  361. Otherwise, the arguments are treated as options to be set.
  362. .PP
  363. The \fBmk\fRexrc command saves the current configuration to a file
  364. called ".exrc" in the current directory.
  365. .PP
  366. The mar\fBk\fR command defines a named mark to refer to a specific place
  367. in the file.
  368. This mark may be used later to specify lines for other commands.
  369. .PP
  370. The \fBvi\fRsual command puts the editor into visual mode.
  371. Instead of emulating ex, \*E will start emulating vi.
  372. .PP
  373. The \fBve\fRrsion command tells you that what version of \*E this is.
  374. .PP
  375. The \fB=\fR command tells you what line you specified, or,
  376. if you specified a range of lines, it will tell you both endpoints and
  377. the number of lines included in the range.
  378. .PP
  379. The \fBf\fRile command tells you the name of the file,
  380. whether it has been modified,
  381. the number of lines in the file,
  382. and the current line number.
  383. You can also use it to change the name of the current file.
  384. .PP
  385. The \fBso\fRurce command reads a sequence of colon mode commands from a file,
  386. and interprets them.
  387. .PP
  388. The \fB@\fR command executes the contents of a cut-buffer as EX commands.
  389. .PP
  390. The \fBcol\fRor command only works under MS-DOS, or if you have an ANSI-compatible
  391. color terminal.
  392. It allows you to set the foreground and background colors
  393. for different types of text:
  394. normal, bold, italic, underlined, standout, pop-up menu, and visible selection.
  395. By default, it changes the "normal" colors;
  396. to change other colors, the first argument to the :color command should be
  397. the first letter of the type of text you want.
  398. The syntax for the colors themselves is fairly intuitive.
  399. For example, ":color light cyan on blue" causes normal text to be displayed
  400. in light cyan on a blue background, and
  401. ":color b bright white" causes bold text to be displayed in bright white on
  402. a blue background.
  403. The background color always defaults to the current background color of
  404. normal text.
  405. Your first :color command \fImust\fP specify both the foreground and background
  406. for normal text.
  407. .NH 2
  408. Conditional Commands
  409. .if n .ul 0
  410. .ID
  411. .ps
  412. if condition
  413. and condition
  414. or condition
  415. then commands
  416. else commands
  417. .DE
  418. .PP
  419. These commands allow \*E to execute a set of commands only if a given condition
  420. is valid.
  421. The \fBif\fR, \fBan\fRd, and \fBo\fRr commands set or clear a flag,
  422. and the \fBth\fRen and \fBel\fRse commands test that flag to decide whether
  423. to execute their arguments as commands.
  424. This can be handy in .exrc files.
  425. .PP
  426. A condition can test the following types of values:
  427. .ID
  428.  
  429. filetype - asterisk, followed by filename extension
  430. constants - either a number or a quoted string
  431. options - the name of a :set option
  432. termcap fields - a two letter name, enclosed in colons
  433. environment variables - the name, preceded by a dollar sign
  434. .DE
  435. .PP
  436. The condition can involve either one boolean value,
  437. two strings compared for equality ("=" or "==") or inquality ("!="),
  438. or two numbers compared with any comparison operator.
  439. .PP
  440. The \fBif\fR command sets the conditional flag equal to the results of
  441. the condition.
  442. The \fBan\fRd command performs a logical \*sAND\*S of the conditional flag
  443. and the new condition.
  444. The \fBo\fRr command performs a logical \*sOR\*S of the conditional flag
  445. and the new condition.
  446. .PP
  447. The \fBth\fRen command's arguments are one or more commands.
  448. (Commands can be delimited by placing a '|' character between them.)
  449. The commands are executed if the conditional flag is true, or skipped if
  450. it is false.
  451. Similarly, \fBel\fRse executes its arguments only if the conditional flag
  452. is false.
  453. .PP
  454. For example, on my Linux system the console can handle color commands, but
  455. xterms can't.
  456. To have colors set on the console but not on an xterm, I added the following
  457. to my .exrc file...
  458. .ID
  459.  
  460. if term="console"
  461. then color yellow on blue | color quit white on blue
  462. .DE
  463. .PP
  464. Note: The .exrc file is executed before elvis loads the first file, so you
  465. can't test for a specific filename there, or modify text, or adjust cut
  466. buffers.
  467. A new initialization file, ".exfilerc", is now supported to fill this need.
  468. It resides in your home directory.
  469. The .exfilerc file is executed after each file is loaded.
  470. A typical .exfilerc file might look like...
  471. .ID
  472.  
  473. if *.c
  474. or *.h
  475. and newfile
  476. then 1!mkskel %
  477. .DE
  478. .NH 2
  479. Multiple File Commands
  480. .if n .ul 0
  481. .ID
  482. .ps
  483. args [files]
  484. next[!] [files]
  485. Next[!]
  486. previous[!]
  487. rewind[!]
  488. .DE
  489. .PP
  490. When you invoke \*E from your shell's command line,
  491. any filenames that you give to \*E as arguments are stored in the args list.
  492. The \fBar\fRgs command will display this list, or define a new one.
  493. .PP
  494. The \fBn\fRext command switches from the current file to the next one
  495. in the args list.
  496. You may specify a new args list here, too.
  497. .PP
  498. The \fBN\fRext and \fBpre\fRvious commands
  499. (they're really aliases for the same command)
  500. switch from the current file to the preceding file in the args list.
  501. .PP
  502. The \fBrew\fRind command switches from the current file to the first file
  503. in the args list.
  504. .NH 2
  505. Switching Files
  506. .if n .ul 0
  507. .ID
  508. .ps
  509. edit[!] [file]
  510. tag[!] tagname
  511. pop[!]
  512. .DE
  513. .PP
  514. The \fBe\fRdit command allows to switch from the current file to some other file.
  515. This has nothing to do with the args list, by the way.
  516. .PP
  517. The \fBta\fRg command looks up a given tagname in a file called "tags".
  518. This tells it which file the tag is in, and how to find it in that file.
  519. \*E then switches to the tag's file and finds the tag.
  520. .PP
  521. The \fBpo\fRp command reverses a tag command.
  522. It switches back to the file and line number from which you invoked the
  523. tag command.
  524. Up to 15 tag commands can be reversed;
  525. the filenames and line numbers are saved on a stack, so you can perform
  526. multiple tag commands, and then reverse them with multiple pop commands.
  527. .NH 2
  528. Working with a Compiler
  529. .if n .ul 0
  530. .ID
  531. .ps
  532. cc [files]
  533. make [target]
  534. errlist[!] [errlist]
  535. .DE
  536. .PP
  537. The \fBcc\fR and \fBmak\fRe commands execute your compiler or "make" utility
  538. and redirect any error messages into a file called "errlist".
  539. By default, cc is run on the current file.
  540. (You should write it before running cc.)
  541. The contents of the "errlist" file are then scanned for error messages.
  542. If an error message is found, then the cursor is moved to the line where
  543. the error was detected,
  544. and the description of the error is displayed on the status line.
  545. .PP
  546. After you've fixed one error, the \fBer\fRrlist command will move
  547. the cursor to the next error.
  548. In visual command mode,
  549. hitting `*' will do this, too.
  550. .PP
  551. You can also create an "errlist" file from outside of \*E,
  552. and use "elvis -m" to start \*E and have the cursor moved to the
  553. first error.
  554. Note that you don't need to supply a filename with "elvis -m" because
  555. the error messages always say which source file an error is in.
  556. .PP
  557. Note:
  558. When you use errlist repeatedly to fix several errors in a single file,
  559. it will attempt to adjust the reported line numbers to allow for lines
  560. that you have inserted or deleted.
  561. These adjustments are made with the assumption that you will work though
  562. the file from the beginning to the end.
  563. .NH 2
  564. Exit Commands
  565. .if n .ul 0
  566. .ID
  567. .ps
  568. quit[!]
  569. wq
  570. xit
  571. .DE
  572. .PP
  573. The \fBq\fRuit command exits from the editor without saving your file.
  574. .PP
  575. The \fBwq\fR command writes your file out, then then exits.
  576. .PP
  577. The \fBx\fRit command is similar to the \fBwq\fR command, except that
  578. \fBx\fRit won't bother to write your file if you haven't modified it.
  579. .NH 2
  580. File I/O Commands
  581. .if n .ul 0
  582. .ID
  583. .ps
  584. [line] read file
  585. [line][,line] write[!] [[>>]file]
  586. .DE
  587. .PP
  588. The \fBr\fRead command gets text from another file and inserts it
  589. after the specified line.
  590. It can also read the output of a program;
  591. simply precede the program name by a '!' and use it in place of the file name.
  592. .PP
  593. The \fBw\fRrite command writes the whole file, or just part of it,
  594. to some other file.
  595. The !, if present, will permit the lines to be written even if you've set
  596. the readonly option.
  597. If you precede the filename by >> then the lines will be appended to the file.
  598. You can send the lines to the standard input of a program by replacing the
  599. filename with a '!' followed by the command and its arguments.
  600. .PP
  601. Note: Be careful not to confuse ":w!filename" and ":w !command".
  602. To write to a program, you must have at least one blank before the '!'.
  603. .NH 2
  604. Directory Commands
  605. .if n .ul 0
  606. .ID
  607. .ps
  608. cd [directory]
  609. chdir [directory]
  610. shell
  611. .DE
  612. .PP
  613. The \fBcd\fR and \fBchd\fRir commands
  614. (really two names for one command)
  615. switch the current working directory.
  616. .PP
  617. The \fBsh\fRell command starts an interactive shell.
  618. .NH 2
  619. Debugging Commands
  620. .if n .ul 0
  621. .ID
  622. .ps
  623. [line][,line] debug[!]
  624. validate[!]
  625. .DE
  626. .PP
  627. These commands are only available if you compile \*E with the -DDEBUG flag.
  628. .PP
  629. The de\fBb\fRug command lists statistics for the blocks which contain
  630. the specified range of lines.
  631. If the ! is present, then the contents of those blocks is displayed, too.
  632. .PP
  633. The \fBva\fRlidate command checks certain variables for internal consistency.
  634. Normally it doesn't output anything unless it detects a problem.
  635. With the !, though, it will always produce *some* output.
  636.