Files
pure-bash-bible/manuscript/chapter13.txt
2018-06-21 18:00:05 +10:00

15 lines
321 B
Plaintext

# PERFORMANCE
## Disable Unicode
If unicode is not required, it can be disabled for a performance increase. Results may vary however there have been noticeable improvements in [neofetch](https://github.com/dylanaraps/neofetch) and other programs.
```shell
# Disable unicode.
LC_ALL=C
LANG=C
```
<!-- CHAPTER END -->