mirror of
https://github.com/dylanaraps/pure-bash-bible.git
synced 2025-12-17 07:54:19 +01:00
15 lines
276 B
Plaintext
15 lines
276 B
Plaintext
# Performance
|
|
|
|
## Disable Unicode
|
|
|
|
If your script doesn't require unicode, you can disable it for a speed boost. Results may vary but I've seen an improvement in Neofetch and some other smaller programs.
|
|
|
|
```shell
|
|
# Disable unicode.
|
|
LC_ALL=C
|
|
LANG=C
|
|
```
|
|
|
|
<!-- CHAPTER END -->
|
|
|