Skip to content

Commit 6094222

Browse files
committed
use preferred shebang approach for documentation
1 parent a595011 commit 6094222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/reduce-memory.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ threads take up 8MiB for the thread stack on a 64-bit system, and 4MiB in a
4141
By default, since glibc `2.10`, the C library will create up to two heap arenas per core. This is known to cause excessive memory usage in some scenarios. To avoid this make a script that sets `MALLOC_ARENA_MAX` before starting bitcoind:
4242

4343
```bash
44-
#!/bin/bash
44+
#!/usr/bin/env bash
4545
export MALLOC_ARENA_MAX=1
4646
bitcoind
4747
```

0 commit comments

Comments
 (0)