Scroll to navigation

JULIA(1) General Commands Manual JULIA(1)

NAME

julia - a high-level, high-performance dynamic programming language for technical computing

SYNOPSIS

julia [OPTIONS...] -- [PROGRAMMFILE] [ARGS...]

If a Julia source file is given as a PROGRAMFILE (optionally followed by arguments in ARGS) Julia will execute the program and exit.

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: https://docs.julialang.org

COMMAND-LINE OPTIONS

Display version information

Print help message

Print uncommon options not shown by `-h`

Set <dir> as the home project/environment. The default @. option will search through parent directories until a Project.toml or JuliaProject.toml file is found.

Start up with the given system image file

Set location of julia executable

Load `JULIA_DEPOT_PATH/config/startup.jl`; if `JULIA_DEPOT_PATH` environment variable is unset, load `~/.julia/config/startup.jl`

Enable or disable Julia's default signal handlers

Use native code from system image if available

Enable or disable incremental precompilation of modules

Evaluate <expr>

Evaluate <expr> and display the result

Load <file> immediately on all processors

Enable n threads; "auto" tries to infer a useful default number of threads to use but the exact behavior might change in the future. Currently, "auto" uses the number of CPUs assigned to this julia process based on the OS-specific affinity assignment interface, if supported (Linux and Windows). If this is not supported (macOS) or process affinity is not configured, it uses the number of CPU threads.

Integer value N launches N additional local worker processes `auto` launches as many workers as the number of local CPU threads (logical cores)

Run processes on hosts listed in <file>

Interactive mode; REPL runs and `isinteractive()` is true

Quiet startup: no banner, suppress REPL warnings

Enable or disable startup banner

Enable or disable color text

Load or save history

Enable or disable syntax and method deprecation warnings (`error` turns warnings into errors)

Enable or disable method overwrite warnings

Enable or disable warning for ambiguous top-level scope

Limit usage of CPU features up to <target>; set to `help` to see the available options

Set the optimization level (level 3 if `-O` is used without a level)

Set a lower bound on the optimization level

Set the level of debug info generation (level 2 if `-g` is used without a level)

Control whether inlining is permitted, including overriding @inline declarations

Emit bounds checks always, never, or respect @inbounds declarations

Disallow or enable unsafe floating point optimizations (overrides @fastmath declaration)

Count executions of source lines (omitting setting is equivalent to `user`)

Count executions of source lines in a file or files under a given directory. A `@` must be placed before the path to indicate this option. A `@` with no path will track the current directory.


Append coverage information to the LCOV tracefile (filename supports format tokens)

Count bytes allocated by each source line (omitting setting is equivalent to `user`)

Count bytes allocated by each source line in a file or files under a given directory. A `@` must be placed before the path to indicate this option. A `@` with no path will track the current directory.

Launch a bug report session. It can be used to start a REPL, run a script, or evaluate expressions. It first tries to use BugReporting.jl installed in current environment and fallbacks to the latest compatible BugReporting.jl if not. For more information, see --bug-report=help.

Forces garbage collection if memory usage is higher than that value. The memory hint might be specified in megabytes (500M) or gigabytes (1.5G)

Enable or disable JIT compiler, or request exhaustive or minimal compilation

Generate an object file (including system image data)

Generate a system image data file (.ji)

Remove docstrings and source location info from system image

Remove IR (intermediate representation) of compiled functions

Generate unoptimized LLVM bitcode (.bc)

Generate LLVM bitcode (.bc)

Generate an assembly file (.s)

Generate an incremental output file (rather than complete)

Print precompile statements for methods compiled during execution or save to a path

Force generate code in imaging mode

FILES AND ENVIRONMENT

See https://docs.julialang.org/en/v1/manual/environment-variables/

BUGS

Please report any bugs using the GitHub issue tracker: https://github.com/julialang/julia/issues?state=open

AUTHORS

Contributors: https://github.com/JuliaLang/julia/graphs/contributors

2022-02-17 JULIA