diff options
author | Maksim Ramanouski <max.romanovsky@gmail.com> | 2022-01-02 14:04:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-02 14:04:43 +0100 |
commit | c69fc7badfe69a67f1ee75fd26e1e5d146b67729 (patch) | |
tree | 6ca92dd7e2adbe676dec8904d284627dacf63c0d /README.md | |
parent | Merge pull request #291 from gaffneyd4/improve-recovery-guide (diff) | |
download | YubiKey-Guide-c69fc7badfe69a67f1ee75fd26e1e5d146b67729.tar.gz |
Fix for `tr: Illegal byte sequence` on macOS
Diffstat (limited to '')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -463,7 +463,7 @@ ydOmByxmDe63u7gqx2XI9eDgpvJwibNH Use upper case letters for improved readability if they are written down: ```console -$ tr -dc '[:upper:]' < /dev/urandom | fold -w 20 | head -n1 +$ LC_ALL=C tr -dc '[:upper:]' < /dev/urandom | fold -w 20 | head -n1 BSSYMUGGTJQVWZZWOPJG ``` |