mirror of
https://github.com/QubesOS/qubes-doc.git
synced 2025-07-25 15:55:54 -04:00
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:
parent
e7e21d47b9
commit
cf460ca6a5
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue