summaryrefslogtreecommitdiff
path: root/docs/dev/batch.md
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2026-05-27 14:55:28 -0400
committerJordan Wiens <github@psifertex.com>2026-05-27 14:55:28 -0400
commit162b406ea28aa5bacc34a00745d8780bcbf58753 (patch)
tree39802866489bd352c54599024e24ee346b44cd35 /docs/dev/batch.md
parentf2ae12d97604da6136b26c184eb7fe30531b4d5e (diff)
add better syntax highlighting for code blocks
Diffstat (limited to 'docs/dev/batch.md')
-rw-r--r--docs/dev/batch.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/dev/batch.md b/docs/dev/batch.md
index f983a726..a7b6334c 100644
--- a/docs/dev/batch.md
+++ b/docs/dev/batch.md
@@ -15,7 +15,7 @@ While MacOS, Linux, and Windows all ship with python interpreters, those are onl
First, make sure to run the [install_api.py](https://github.com/Vector35/binaryninja-api/tree/dev/scripts) script. Note that the script is shipped with Binary Ninja already, just look in your [binary path](../guide/index.md#binary-path) inside of the `scripts` subfolder. Run it like:
-```
+```bash
python3 ~/binaryninja/scripts/install_api.py
```
@@ -38,7 +38,7 @@ with binaryninja.load("/bin/ls") as bv:
If we run it, we'll see:
-```
+```bash
$ ./first.py
Opening /bin/ls which has 128 functions
```
@@ -73,7 +73,7 @@ for bin in glob("/bin/*"):
Now let's run it and notice it's fast enough to parse all of `/bin/*` in just a few seconds:
-```
+```bash
$ ./glob.py
Opening /bin/cat which has 11 functions
Opening /bin/echo which has 2 functions