diff --git a/doc/FAQ.md b/doc/FAQ.md index 9787b9449b9d..f9d7953edb10 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -167,7 +167,7 @@ Again, please follow [./guide.md](./guide.md) for our recommendations on setting Yes you can! Use `hashed-password` instead of `password`. Generate the hash with: ``` -echo "thisismypassword" | sha256sum | cut -d' ' -f1 +echo -n "thisismypassword" | sha256sum | cut -d' ' -f1 ``` Of course replace `"thisismypassword"` with your actual password.