aboutsummaryrefslogtreecommitdiff
path: root/doc/chapters/vocabulary.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/chapters/vocabulary.texi')
-rw-r--r--doc/chapters/vocabulary.texi47
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/chapters/vocabulary.texi b/doc/chapters/vocabulary.texi
new file mode 100644
index 000000000..8b6cbe35a
--- /dev/null
+++ b/doc/chapters/vocabulary.texi
@@ -0,0 +1,47 @@
1@node Vocabulary
2@chapter Vocabulary
3
4@menu
5* Words and characters::
6* Technical Assumptions::
7@end menu
8
9@node Words and characters
10@section Words and characters
11
12Throughout this document we use certain words and characters.
13
14@enumerate
15@item
16``@command{#}'' in example code blocks describes commands, ie comments.
17
18@example
19# Do the foobar thing:
20$ make foobar
21@end example
22
23@item
24Dollarsign ``@command{$}'' in example code blocks describes commands you
25execute as unprivileged users.
26
27@example
28$ cd foo; ./configure --example-switch
29@end example
30
31@item
32Backslash ``@command{\}'' describes linebreaks.
33
34@example
35./configure --foo --bar --baz \
36 --short-loop
37@end example
38
39...expands to @code{./configure --foo --bar --baz --short-loop}
40
41@end enumerate
42
43@node Technical Assumptions
44@section Technical Assumptions
45
46@c Is it really assuming Bash (ie Bash extensions of POSIX being used)?
47The shell on GNU systems is assumed to be Bash.