guile-invoke.texi 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. @c -*-texinfo-*-
  2. @c This is part of the GNU Guile Reference Manual.
  3. @c Copyright (C) 1996, 1997, 2000-2005, 2010, 2011, 2013, 2014,
  4. @c 2016 Free Software Foundation, Inc.
  5. @c See the file guile.texi for copying conditions.
  6. @node Invoking Guile
  7. @section Invoking Guile
  8. @cindex invocation
  9. Many features of Guile depend on and can be changed by information that
  10. the user provides either before or when Guile is started. Below is a
  11. description of what information to provide and how to provide it.
  12. @menu
  13. * Command-line Options:: Command-line options understood by Guile.
  14. * Environment Variables:: Variables that affect Guile's behavior.
  15. @end menu
  16. @node Command-line Options
  17. @subsection Command-line Options
  18. @cindex Command-line Options
  19. @cindex command-line arguments
  20. @cindex arguments (command line)
  21. @cindex options (command line)
  22. @cindex switches (command line)
  23. @cindex startup (command-line arguments)
  24. @cindex invocation (command-line arguments)
  25. Here we describe Guile's command-line processing in detail. Guile
  26. processes its arguments from left to right, recognizing the switches
  27. described below. For examples, see @ref{Scripting Examples}.
  28. @table @code
  29. @item @var{script} @var{arg...}
  30. @itemx -s @var{script} @var{arg...}
  31. @cindex script mode
  32. By default, Guile will read a file named on the command line as a
  33. script. Any command-line arguments @var{arg...} following @var{script}
  34. become the script's arguments; the @code{command-line} function returns
  35. a list of strings of the form @code{(@var{script} @var{arg...})}.
  36. It is possible to name a file using a leading hyphen, for example,
  37. @file{-myfile.scm}. In this case, the file name must be preceded by
  38. @option{-s} to tell Guile that a (script) file is being named.
  39. Scripts are read and evaluated as Scheme source code just as the
  40. @code{load} function would. After loading @var{script}, Guile exits.
  41. @item -c @var{expr} @var{arg...}
  42. @cindex evaluate expression, command-line argument
  43. Evaluate @var{expr} as Scheme code, and then exit. Any command-line
  44. arguments @var{arg...} following @var{expr} become command-line
  45. arguments; the @code{command-line} function returns a list of strings of
  46. the form @code{(@var{guile} @var{arg...})}, where @var{guile} is the
  47. path of the Guile executable.
  48. @item -- @var{arg...}
  49. Run interactively, prompting the user for expressions and evaluating
  50. them. Any command-line arguments @var{arg...} following the @option{--}
  51. become command-line arguments for the interactive session; the
  52. @code{command-line} function returns a list of strings of the form
  53. @code{(@var{guile} @var{arg...})}, where @var{guile} is the path of the
  54. Guile executable.
  55. @item -L @var{directory}
  56. Add @var{directory} to the front of Guile's module load path. The given
  57. directories are searched in the order given on the command line and
  58. before any directories in the @env{GUILE_LOAD_PATH} environment
  59. variable. Paths added here are @emph{not} in effect during execution of
  60. the user's @file{.guile} file.
  61. @item -C @var{directory}
  62. Like @option{-L}, but adjusts the load path for @emph{compiled} files.
  63. @item -x @var{extension}
  64. Add @var{extension} to the front of Guile's load extension list
  65. (@pxref{Load Paths, @code{%load-extensions}}). The specified extensions
  66. are tried in the order given on the command line, and before the default
  67. load extensions. Extensions added here are @emph{not} in effect during
  68. execution of the user's @file{.guile} file.
  69. @item -l @var{file}
  70. Load Scheme source code from @var{file}, and continue processing the
  71. command line.
  72. @item -e @var{function}
  73. Make @var{function} the @dfn{entry point} of the script. After loading
  74. the script file (with @option{-s}) or evaluating the expression (with
  75. @option{-c}), apply @var{function} to a list containing the program name
  76. and the command-line arguments---the list provided by the
  77. @code{command-line} function.
  78. A @option{-e} switch can appear anywhere in the argument list, but Guile
  79. always invokes the @var{function} as the @emph{last} action it performs.
  80. This is weird, but because of the way script invocation works under
  81. POSIX, the @option{-s} option must always come last in the list.
  82. The @var{function} is most often a simple symbol that names a function
  83. that is defined in the script. It can also be of the form @code{(@@
  84. @var{module-name} @var{symbol})}, and in that case, the symbol is
  85. looked up in the module named @var{module-name}.
  86. As a shorthand you can use the form @code{(symbol ...)}, that is, a list
  87. of only symbols that doesn't start with @code{@@}. It is equivalent to
  88. @code{(@@ @var{module-name} main)}, where @var{module-name} is
  89. @code{(symbol ...)} form. @xref{Using Guile Modules} and @ref{Scripting
  90. Examples}.
  91. @item -ds
  92. Treat a final @option{-s} option as if it occurred at this point in the
  93. command line; load the script here.
  94. This switch is necessary because, although the POSIX script invocation
  95. mechanism effectively requires the @option{-s} option to appear last, the
  96. programmer may well want to run the script before other actions
  97. requested on the command line. For examples, see @ref{Scripting
  98. Examples}.
  99. @item \
  100. Read more command-line arguments, starting from the second line of the
  101. script file. @xref{The Meta Switch}.
  102. @item --use-srfi=@var{list}
  103. @cindex loading srfi modules (command line)
  104. The option @option{--use-srfi} expects a comma-separated list of numbers,
  105. each representing a SRFI module to be loaded into the interpreter
  106. before evaluating a script file or starting the REPL. Additionally,
  107. the feature identifier for the loaded SRFIs is recognized by
  108. the procedure @code{cond-expand} when this option is used.
  109. Here is an example that loads the modules SRFI-8 ('receive') and SRFI-13
  110. ('string library') before the GUILE interpreter is started:
  111. @example
  112. guile --use-srfi=8,13
  113. @end example
  114. @item --debug
  115. @cindex debugging virtual machine (command line)
  116. Start with the debugging virtual machine (VM) engine. Using the
  117. debugging VM will enable support for VM hooks, which are needed for
  118. tracing, breakpoints, and accurate call counts when profiling. The
  119. debugging VM is slower than the regular VM, though, by about ten
  120. percent. @xref{VM Hooks}, for more information.
  121. By default, the debugging VM engine is only used when entering an
  122. interactive session. When executing a script with @option{-s} or
  123. @option{-c}, the normal, faster VM is used by default.
  124. @vnew{1.8}
  125. @item --no-debug
  126. @cindex debugging virtual machine (command line)
  127. Do not use the debugging VM engine, even when entering an interactive
  128. session.
  129. Note that, despite the name, Guile running with @option{--no-debug}
  130. @emph{does} support the usual debugging facilities, such as printing a
  131. detailed backtrace upon error. The only difference with
  132. @option{--debug} is lack of support for VM hooks and the facilities that
  133. build upon it (see above).
  134. @item -q
  135. @cindex init file, not loading
  136. @cindex @file{.guile} file, not loading
  137. Do not load the initialization file, @file{.guile}. This option only
  138. has an effect when running interactively; running scripts does not load
  139. the @file{.guile} file. @xref{Init File}.
  140. @item --listen[=@var{p}]
  141. While this program runs, listen on a local port or a path for REPL
  142. clients. If @var{p} starts with a number, it is assumed to be a local
  143. port on which to listen. If it starts with a forward slash, it is
  144. assumed to be the file name of a UNIX domain socket on which to listen.
  145. If @var{p} is not given, the default is local port 37146. If you look
  146. at it upside down, it almost spells ``Guile''. If you have netcat
  147. installed, you should be able to @kbd{nc localhost 37146} and get a
  148. Guile prompt. Alternately you can fire up Emacs and connect to the
  149. process; see @ref{Using Guile in Emacs} for more details.
  150. @quotation Note
  151. Opening a port allows anyone who can connect to that port to do anything
  152. Guile can do, as the user
  153. that the Guile process is running as. Do not use @option{--listen} on
  154. multi-user machines. Of course, if you do not pass @option{--listen} to
  155. Guile, no port will be opened.
  156. Guile protects against the
  157. @uref{https://en.wikipedia.org/wiki/Inter-protocol_exploitation,
  158. @dfn{HTTP inter-protocol exploitation attack}}, a scenario whereby an
  159. attacker can, @i{via} an HTML page, cause a web browser to send data to
  160. TCP servers listening on a loopback interface or private network.
  161. Nevertheless, you are advised to use UNIX domain sockets, as in
  162. @code{--listen=/some/local/file}, whenever possible.
  163. @end quotation
  164. That said, @option{--listen} is great for interactive debugging and
  165. development.
  166. @vnew{2.0}
  167. @item --auto-compile
  168. Compile source files automatically (default behavior).
  169. @vnew{2.0.1}
  170. @item --fresh-auto-compile
  171. Treat the auto-compilation cache as invalid, forcing recompilation.
  172. @vnew{2.0}
  173. @item --no-auto-compile
  174. Disable automatic source file compilation.
  175. @vnew{2.0.8}
  176. @item --language=@var{lang}
  177. For the remainder of the command line arguments, assume that files
  178. mentioned with @code{-l} and expressions passed with @code{-c} are
  179. written in @var{lang}. @var{lang} must be the name of one of the
  180. languages supported by the compiler (@pxref{Compiler Tower}). When run
  181. interactively, set the REPL's language to @var{lang} (@pxref{Using Guile
  182. Interactively}).
  183. The default language is @code{scheme}; other interesting values include
  184. @code{elisp} (for Emacs Lisp), and @code{ecmascript}.
  185. The example below shows the evaluation of expressions in Scheme, Emacs
  186. Lisp, and ECMAScript:
  187. @example
  188. guile -c "(apply + '(1 2))"
  189. guile --language=elisp -c "(= (funcall (symbol-function '+) 1 2) 3)"
  190. guile --language=ecmascript -c '(function (x) @{ return x * x; @})(2);'
  191. @end example
  192. To load a file written in Scheme and one written in Emacs Lisp, and then
  193. start a Scheme REPL, type:
  194. @example
  195. guile -l foo.scm --language=elisp -l foo.el --language=scheme
  196. @end example
  197. @vnew{2.0}
  198. @item -h@r{, }--help
  199. Display help on invoking Guile, and then exit.
  200. @item -v@r{, }--version
  201. Display the current version of Guile, and then exit.
  202. @end table
  203. @node Environment Variables
  204. @subsection Environment Variables
  205. @cindex environment variables
  206. @cindex shell
  207. @cindex initialization
  208. The @dfn{environment} is a feature of the operating system; it consists
  209. of a collection of variables with names and values. Each variable is
  210. called an @dfn{environment variable} (or, sometimes, a ``shell
  211. variable''); environment variable names are case-sensitive, and it is
  212. conventional to use upper-case letters only. The values are all text
  213. strings, even those that are written as numerals. (Note that here we
  214. are referring to names and values that are defined in the operating
  215. system shell from which Guile is invoked. This is not the same as a
  216. Scheme environment that is defined within a running instance of Guile.
  217. For a description of Scheme environments, @pxref{About Environments}.)
  218. How to set environment variables before starting Guile depends on the
  219. operating system and, especially, the shell that you are using. For
  220. example, here is how to tell Guile to provide detailed warning messages
  221. about deprecated features by setting @env{GUILE_WARN_DEPRECATED} using
  222. Bash:
  223. @example
  224. $ export GUILE_WARN_DEPRECATED="detailed"
  225. $ guile
  226. @end example
  227. @noindent
  228. Or, detailed warnings can be turned on for a single invocation using:
  229. @example
  230. $ env GUILE_WARN_DEPRECATED="detailed" guile
  231. @end example
  232. If you wish to retrieve or change the value of the shell environment
  233. variables that affect the run-time behavior of Guile from within a
  234. running instance of Guile, see @ref{Runtime Environment}.
  235. Here are the environment variables that affect the run-time behavior of
  236. Guile:
  237. @table @env
  238. @item GUILE_AUTO_COMPILE
  239. @vindex GUILE_AUTO_COMPILE
  240. This is a flag that can be used to tell Guile whether or not to compile
  241. Scheme source files automatically. Starting with Guile 2.0, Scheme
  242. source files will be compiled automatically, by default.
  243. If a compiled (@file{.go}) file corresponding to a @file{.scm} file is
  244. not found or is not newer than the @file{.scm} file, the @file{.scm}
  245. file will be compiled on the fly, and the resulting @file{.go} file
  246. stored away. An advisory note will be printed on the console.
  247. Compiled files will be stored in the directory
  248. @file{$XDG_CACHE_HOME/@/guile/@/ccache}, where @env{XDG_CACHE_HOME}
  249. defaults to the directory @file{$HOME/.cache}. This directory will be
  250. created if it does not already exist.
  251. Note that this mechanism depends on the timestamp of the @file{.go} file
  252. being newer than that of the @file{.scm} file; if the @file{.scm} or
  253. @file{.go} files are moved after installation, care should be taken to
  254. preserve their original timestamps.
  255. Set @env{GUILE_AUTO_COMPILE} to zero (0), to prevent Scheme files from
  256. being compiled automatically. Set this variable to ``fresh'' to tell
  257. Guile to compile Scheme files whether they are newer than the compiled
  258. files or not.
  259. @xref{Compilation}.
  260. @item GUILE_HISTORY
  261. @vindex GUILE_HISTORY
  262. This variable names the file that holds the Guile REPL command history.
  263. You can specify a different history file by setting this environment
  264. variable. By default, the history file is @file{$HOME/.guile_history}.
  265. @item GUILE_INSTALL_LOCALE
  266. @vindex GUILE_INSTALL_LOCALE
  267. This is a flag that can be used to tell Guile whether or not to install
  268. the current locale at startup, via a call to @code{(setlocale LC_ALL
  269. "")}@footnote{The @code{GUILE_INSTALL_LOCALE} environment variable was
  270. ignored in Guile versions prior to 2.0.9.}. @xref{Locales}, for more
  271. information on locales.
  272. You may explicitly indicate that you do not want to install
  273. the locale by setting @env{GUILE_INSTALL_LOCALE} to @code{0}, or
  274. explicitly enable it by setting the variable to @code{1}.
  275. Usually, installing the current locale is the right thing to do. It
  276. allows Guile to correctly parse and print strings with non-ASCII
  277. characters. Therefore, this option is on by default.
  278. @item GUILE_STACK_SIZE
  279. @vindex GUILE_STACK_SIZE
  280. Guile currently has a limited stack size for Scheme computations.
  281. Attempting to call too many nested functions will signal an error. This
  282. is good to detect infinite recursion, but sometimes the limit is reached
  283. for normal computations. This environment variable, if set to a
  284. positive integer, specifies the number of Scheme value slots to allocate
  285. for the stack.
  286. In the future we will implement stacks that can grow and shrink, but for
  287. now this hack will have to do.
  288. @item GUILE_LOAD_COMPILED_PATH
  289. @vindex GUILE_LOAD_COMPILED_PATH
  290. This variable may be used to augment the path that is searched for
  291. compiled Scheme files (@file{.go} files) when loading. Its value should
  292. be a colon-separated list of directories. If it contains the special
  293. path component @code{...} (ellipsis), then the default path is put in
  294. place of the ellipsis, otherwise the default path is placed at the end.
  295. The result is stored in @code{%load-compiled-path} (@pxref{Load Paths}).
  296. Here is an example using the Bash shell that adds the current directory,
  297. @file{.}, and the relative directory @file{../my-library} to
  298. @code{%load-compiled-path}:
  299. @example
  300. $ export GUILE_LOAD_COMPILED_PATH=".:../my-library"
  301. $ guile -c '(display %load-compiled-path) (newline)'
  302. (. ../my-library /usr/local/lib/guile/3.0/ccache)
  303. @end example
  304. @item GUILE_LOAD_PATH
  305. @vindex GUILE_LOAD_PATH
  306. This variable may be used to augment the path that is searched for
  307. Scheme files when loading. Its value should be a colon-separated list
  308. of directories. If it contains the special path component @code{...}
  309. (ellipsis), then the default path is put in place of the ellipsis,
  310. otherwise the default path is placed at the end. The result is stored
  311. in @code{%load-path} (@pxref{Load Paths}).
  312. Here is an example using the Bash shell that prepends the current
  313. directory to @code{%load-path}, and adds the relative directory
  314. @file{../srfi} to the end:
  315. @example
  316. $ env GUILE_LOAD_PATH=".:...:../srfi" \
  317. guile -c '(display %load-path) (newline)'
  318. (. /usr/local/share/guile/3.0 \
  319. /usr/local/share/guile/site/3.0 \
  320. /usr/local/share/guile/site \
  321. /usr/local/share/guile \
  322. ../srfi)
  323. @end example
  324. (Note: The line breaks, above, are for documentation purposes only, and
  325. not required in the actual example.)
  326. @item GUILE_WARN_DEPRECATED
  327. @vindex GUILE_WARN_DEPRECATED
  328. As Guile evolves, some features will be eliminated or replaced by newer
  329. features. To help users migrate their code as this evolution occurs,
  330. Guile will issue warning messages about code that uses features that
  331. have been marked for eventual elimination. @env{GUILE_WARN_DEPRECATED}
  332. can be set to ``no'' to tell Guile not to display these warning
  333. messages, or set to ``detailed'' to tell Guile to display more lengthy
  334. messages describing the warning. @xref{Deprecation}.
  335. @item HOME
  336. @vindex HOME
  337. Guile uses the environment variable @env{HOME}, the name of your home
  338. directory, to locate various files, such as @file{.guile} or
  339. @file{.guile_history}.
  340. @end table
  341. @c Local Variables:
  342. @c mode: texinfo
  343. @c TeX-master: "guile"
  344. @c End: