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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
.TH "scilab-cli" "1" "November 2017"
.SH NAME
scilab, scilab-cli and scilab-adv-cli \- Scilab shell
.SH SYNOPSIS
.B scilab\fR <arguments>
.PP
.SH OPTIONS
A complete list of options is included below.
.SS General options
.TP
.B \-args\fR <rest>
Accept all extra arguments and make them available through sciargs
.TP
.B \-display\fR <display> (or \fB\-d\fR <display>)
Use the given server display (under Xwindow systems)
.TP
.B \-e\fR <instruction>
Execute the scilab instruction given in argument
(\fB\-e\fR and \fB\-f\fR arguments are mutually exclusive.)
.TP
.B \-f\fR <file>
Execute the scilab script given in argument
(\fB\-e\fR and \fB\-f\fR arguments are mutually exclusive.)
.TP
.B \-quit
Force scilab exit after execution of script from \fB\-e\fR or \fB\-f\fR argument
(this flag is ignored if it is not used with \fB\-e\fR or \fB\-f\fR argument)
.TP
.B \-l\fR <lang>
change the language of scilab (default : en_US)
.TP
.B \-nocolor
Remove the color in the cli and adv-cli modes
.TP
.B \-nw
Enable console mode
.TP
.B \-nwni\fR (or \fB-nogui\fR)
Enable terminal mode
.SS "Developer Trace arguments"
.TP
.B \--parse-trace
Display bison state machine evolution
.TP
.B \--AST-trace
Display ASCII-art AST to be human readable
.TP
.B \--pretty-print
Display pretty-printed code, standard Scilab syntax.
.SS "Developer Timer arguments"
.TP
.B \--AST-timed
Time each AST node
.TP
.B \--timed
Time global execution
.SS "Developer Debug arguments"
.TP
.B \--context-dump
Display context status
.TP
.B \--exec-verbose
Display command before running it.
.TP
.B \-nb
Do not display Scilab loading on start
.TP
.B \-noatomsautoload
Do not load ATOMS installed module
.TP
.B \--no-exec
Only do Lexing/parsing do not execute instructions
.TP
.B \-nouserstartup
Do not execute the user startup files SCIHOME/.scilab or SCIHOME/scilab.ini
.TP
.B \-ns
Don't execute etc/scilab.start
(will disable many features - only use if you know what you are doing)
.TP
.B \--timeout\fR <delay>
Kill the Scilab process after the given delay
.SS "Developer arguments"
.TP
.B \-debug
Start Scilab under gdb
(define the variable SCILAB_GDB_OPT to add custom arguments to gdb)
.TP
.B \-debug-kdbg
Start Scilab under kdbg
.TP
.B \-profiling
Start Scilab under valgrind
(define the variable SCILAB_VALGRIND_OPT to add custom arguments to
valgrind and override the existing valgrind arguments)
.TP
.B \-profiling-visu
Start Scilab under callgrind
(define the variable SCILAB_VALGRIND_OPT to add custom arguments to
callgrind and override the existing callgrind arguments)
.TP
.B \-disable-exception-catching
Disable Scilab exception catching system.
.TP
.B \--parse-file\fR <file>
Only parse the given file argument without execution and exit
.TP
.B \--parse-trace
Display bison state machine evolution
.TP
.B \--pretty-print
Display pretty-printed code using standard Scilab syntax
.SH ENVIRONMENT VARIABLES
.TP
SCIVERBOSE
Provides debugging information of the startup
.TP
JAVA_HOME
Declares which Java Virtual Machine to use
.TP
SCI_DISABLE_TK
Disables Tk (but not Tcl) features
.TP
SCI_JAVA_ENABLE_HEADLESS
Runs Java Headless VM
.TP
SCI_DISABLE_EXCEPTION_CATCHING
Disable the catch by Scilab of exception (segfault, ...)
.SH AUTHOR
This manual page was written by Julien Puydt for Debian
|