Query passwords with 'read -r'

'read' without '-r' interprets escape sequences, so it may not behave
properly if the password contains literal backslashes (depending on the
next character).
This commit is contained in:
Rusty Bird 2022-01-02 13:05:47 +00:00
parent e7e21d47b9
commit cf460ca6a5
No known key found for this signature in database
GPG key ID: 469D78F47AAF2ADF
2 changed files with 2 additions and 2 deletions

View file

@ -72,7 +72,7 @@ To use this mode you need to:
(This way your password will not leak to the terminal command history file.)
```
read password
read -r password
```
Now run the following command to calculate your hashed password.