vocabulary.texi 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. @node Vocabulary
  2. @chapter Vocabulary
  3. @menu
  4. * Definitions abbreviations and acronyms::
  5. * Words and characters::
  6. * Technical Assumptions::
  7. @end menu
  8. Throughout this Reference Manual we will use certain words and characters
  9. which are listed in this introductionary chapter.
  10. @node Definitions abbreviations and acronyms
  11. @section Definitions abbreviations and acronyms
  12. @menu
  13. * Definitions::
  14. @end menu
  15. @node Definitions
  16. @subsection Definitions
  17. Throughout this Reference Manual, the following terms and definitions
  18. apply.
  19. @node Words and characters
  20. @section Words and characters
  21. @enumerate
  22. @item
  23. In chapter Installation Handbook,
  24. ``@command{#}'' in example code blocks describes commands executed as root
  25. @example
  26. # echo "I am root"
  27. I am root
  28. @end example
  29. @item
  30. However, in the chapter GNUnet C Tutorial
  31. ``@command{#}'' in example code blocks describes commands, ie comments.
  32. @example
  33. # Do the foobar thing:
  34. $ make foobar
  35. @end example
  36. @item
  37. Dollarsign ``@command{$}'' in example code blocks describes commands you
  38. execute as unprivileged users.
  39. @example
  40. $ cd foo; ./configure --example-switch
  41. @end example
  42. @item
  43. Backslash ``@command{\}'' describes linebreaks.
  44. @example
  45. ./configure --foo --bar --baz \
  46. --short-loop
  47. @end example
  48. ...expands to @code{./configure --foo --bar --baz --short-loop}
  49. @end enumerate
  50. @node Technical Assumptions
  51. @section Technical Assumptions
  52. @c Is it really assuming Bash (ie Bash extensions of POSIX being used)?
  53. The shell on GNU systems is assumed to be Bash.