Skip to content

Commit

Permalink
Fixes according to the review
Browse files Browse the repository at this point in the history
  • Loading branch information
satk0 committed Jul 12, 2024
1 parent 94dad91 commit c0b2bfc
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
4 changes: 2 additions & 2 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ book:
- src/configuration/colors.md
- src/configuration/evars.md
- src/configuration/initial_scripts.md
- src/configuration/compile-time_variables.md
- src/configuration/run-time_variables.md
- src/configuration/compile_time_variables.md
- src/configuration/run_time_variables.md

- part: "Basic Commands"
chapters:
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
## Run-Time Variables

After successful compilation, run-time variables will be exposed to change the default behavior of rizin.
Run-time variables (also known as environment variables) can be used to change the default behavior when running rizin or tools.

Description of these run-time variables can be accessed by executing the command `rizin -hh` on a terminal.
The description of these run-time variables can be accessed by executing the command `rizin -hh` on a terminal.

```bash
$ rizin -hh
...
Plugins:
binrc /home/username/.local/share/rizin/rc.d/bin-<format> (elf, elf64, mach0, ..)
RZ_USER_PLUGINS /home/username/.local/lib/rizin/plugins
RZ_LIB_PLUGINS /home/username/.local/lib/rizin/plugins
RZ_EXTRA_PLUGINS
Environment:
ANSICON ansicon's W & H of the buffer and w & h of the window in the form of: "WxH (wxh)"
DEBUGINFOD_URLS e bin.dbginfo.debuginfod_urls - use alternative debuginfod server
Expand All @@ -24,11 +29,18 @@ Environment:
RZ_LOGSHOWSOURCES should the log output contain src info (filename:lineno)
RZ_PIPE_IN rzpipe cmd input (file descriptor)
RZ_PIPE_OUT rzpipe cmd output (file descriptor)
RZ_MAGICPATH /home/adam/.local/share/rizin/magic
RZ_MAGICPATH /home/username/.local/share/rizin/magic
RZ_NOPLUGINS do not load rizin shared plugins
RZ_RCFILE /home/adam/.rizinrc (user preferences, batch script)
RZ_DATAHOME /home/adam/.local/share/rizin
RZ_RCFILE /home/username/.rizinrc (user preferences, batch script)
RZ_DATAHOME /home/username/.local/share/rizin
RZ_VERSION contains the current version of rizin
SFLIBPATH SFLib syscall library path
...
Paths:
RZ_PREFIX /home/username/.local
RZ_EXTRA_PREFIX
RZ_INCDIR /home/username/.local/include/librz
RZ_LIBDIR /home/username/.local/lib
RZ_SIGDB /home/username/.local/share/rizin/sigdb
RZ_EXTRA_SIGDB
RZ_LIBEXT so
```

0 comments on commit c0b2bfc

Please sign in to comment.