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
|
[comment {-*- Tcl -*- xotclsh manpage}]
[include version.inc]
[manpage_begin xotclsh 1 [vset VERSION]]
[copyright {2014 Stefan Sobernig <stefan.sobernig@wu.ac.at>, Gustaf Neumann <gustaf.neumann@wu.ac.at>; available under the Creative Commons Attribution 3.0 Austria license (CC BY 3.0 AT).}]
[titledesc {Simple shell containing NSF/XOTcl2 interpreter}]
[moddesc {Command-line interface}]
[description]
[list_begin definitions]
[call [syscmd "xotclsh"] [opt [arg fileName]]]
[syscmd "xotclsh"] is a shell-like application that reads XOTcl2 and Tcl commands from its standard input or from [arg fileName] and evaluates them. If invoked without [arg fileName], then it runs in REPL mode, reading commands from standard input and printing command results and error messages to standard output. It runs until the exit command is invoked or until it reaches end-of-file on its standard input.
[para]
[syscmd "xotclsh"] can be used like [syscmd "tclsh"] to make XOTcl2 scripts directly invocable from the shell, by providing the following first line ("shebang") in the respective script:
[example {
#! /usr/bin/env xotclsh
}]
A (more portable) alternative is:
[example_begin]
#! /bin/sh
# the next line restarts using xotclsh \
exec xotclsh "$0" "$@"
[example_end]
[list_end]
[manpage_end]
|