This repository was archived by the owner on Dec 16, 2022. It is now read-only.
forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjulia.1
140 lines (114 loc) · 3.51 KB
/
julia.1
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
131
132
133
134
135
136
137
138
139
140
.\" To get a preview of the man page as it will actually be displayed, run
.\"
.\" > nroff -man julia.1 | less
.\"
.\" at the terminal.
.\"
.\" Suggestions and improvements very much appreciated!
.\" Nothing is too large or too small.
.\" This man page was largely taken from pre-existing sources of documentation.
.\" This is documented by comments in the man page's source.
.\"
.\" # TODOs:
.\" 1. Simple, hopefully portable way to get the man page on everyone's manpath.
.\" (The whole point was to be able to simply `man julia`!)
.\" 2. Put options in alphabetical order instead of the order from julia --help?
.\"
.\" Possible sections to add to man page:
.\" - licensing
.\" - internet resources and/or documentation
.\" - environment
.\" - see also
.\" - diagnostics
.\" - notes
.TH JULIA 1 2013-12-10 Julia "Julia Programmers' Reference Guide"
.\" from the front page of http://julialang.org/
.SH NAME
julia - high-level, high-performance dynamic programming language for technical computing
.SH SYNOPSIS
julia [option] [program] [args..]
.\" Taken almost verbatim from the front page of http://julialang.org/
.SH DESCRIPTION
Julia is a high-level, high-performance dynamic programming language
for technical computing, with syntax that is familiar to users
of other technical computing environments.
It provides a sophisticated compiler, distributed parallel execution,
numerical accuracy, and an extensive mathematical function library.
The library, largely written in Julia itself, also integrates mature,
best-of-breed C and Fortran libraries for linear algebra,
random number generation, signal processing, and string processing.
In addition, the Julia developer community is contributing a number of
external packages through Julia's built-in package manager at a rapid pace.
Julia programs are organized around multiple dispatch;
by defining functions and overloading them for different combinations
of argument types, which can also be user-defined.
For a more in-depth discussion of the rationale and advantages of Julia
over other systems, please see the online manual:
http://docs.julialang.org/en/latest/manual/
If a Julia source file is given as \fIprogram\fP (possibly with arguments in
\fIargs\fP) then, instead of launching an interactive session, Julia executes
the program and exits.
.\" This section was taken nearly verbatim from the output of `julia --help`
.SH "COMMAND-LINE OPTIONS"
.TP 25
-v --version
Display version information
.TP
-q --quiet
Quiet startup without banner
.TP
--color=<yes|no>
Turn colored prompts on (yes) and off (no).
.TP
-H --home <dir>
Load files relative to <dir>
.TP
-T --tab <size>
Set REPL tab width to <size>
.TP
-e --eval <expr>
Evaluate <expr>
.TP
-E --print <expr>
Evaluate and show <expr>
.TP
-P --post-boot <expr>
Evaluate <expr> right after boot
.TP
-L --load file
Load <file> right after boot on all processors
.TP
-J --sysimage file
Start up with the given system image file
.TP
-p n
Run n local processes
.TP
--machinefile file
Run processes on hosts listed in file
.TP
--no-history
Don't load or save history
.TP
-f --no-startup
Don't load ~/.juliarc.jl
.TP
-F
Load ~/.juliarc.jl, then handle remaining inputs
.TP
-h --help
Print a help message displaying command-line arguments
.SH FILES
.I ~/.juliarc.jl
.RS
Per user startup file.
.RE
.I /etc/julia/juliarc.jl
.RS
System-wide startup file.
.RE
.SH BUGS
Please report any bugs using the GitHub issue tracker:
https://github.com/julialang/julia/issues?state=open
.SH AUTHORS
Contributors: https://github.com/JuliaLang/julia/graphs/contributors