diff options
author | drduh <github@duh.to> | 2022-03-16 15:28:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-16 15:28:16 -0700 |
commit | 55be65737594be8c0a377257d9a4cffc03f37134 (patch) | |
tree | b3a1f330efe461f61b042f66c192b0f7c617619a /README.md | |
parent | Merge pull request #310 from dirkjanm/master (diff) | |
parent | Fix for `tr: Illegal byte sequence` on macOS (diff) | |
download | YubiKey-Guide-55be65737594be8c0a377257d9a4cffc03f37134.tar.gz |
Merge pull request #303 from maxromanovsky/patch-1
Fix for `tr: Illegal byte sequence` on macOS
Diffstat (limited to 'README.md')
-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 ``` |