aboutsummaryrefslogtreecommitdiff
path: root/doc/documentation/chapters/vocabulary.texi
blob: 9621cb17459c520dd04bc21a2e38f73e931914d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
@node Vocabulary
@chapter Vocabulary

@menu
* Words and characters::
* Technical Assumptions::
@end menu

@node Words and characters
@section Words and characters

Throughout this document we use certain words and characters.

@enumerate
@item
In chapter Installation Handbook,
``@command{#}'' in example code blocks describes commands executed as root

@example
# echo "I am root"
I am root
@end example

@item
However, in the chapter GNUnet C Tutorial
``@command{#}'' in example code blocks describes commands, ie comments.

@example
# Do the foobar thing:
$ make foobar
@end example

@item
Dollarsign ``@command{$}'' in example code blocks describes commands you
execute as unprivileged users.

@example
$ cd foo; ./configure --example-switch
@end example

@item
Backslash ``@command{\}'' describes linebreaks.

@example
./configure --foo --bar --baz \
 --short-loop
@end example

...expands to @code{./configure --foo --bar --baz --short-loop}

@end enumerate

@node Technical Assumptions
@section Technical Assumptions

@c Is it really assuming Bash (ie Bash extensions of POSIX being used)?
The shell on GNU systems is assumed to be Bash.