diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-02-24 10:22:43 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-02-24 10:22:43 +0100 |
commit | f22f14c65bb9fba946e5039132a4c0b01b0c02ce (patch) | |
tree | 6055696111e8b1d91ed97eb0231c3db245b2f1c2 /doc | |
parent | 92bcca37ab0c52789b13ebee1f4659e30f05e2b6 (diff) |
doc: mention bitcoin-cli -stdin in release notes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release-notes.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md index 801b684e6b..707f2357f8 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -8,6 +8,19 @@ Example item ---------------- +bitcoin-cli: arguments privacy +-------------------------------- + +The RPC command line client gained a new argument, `-stdin` +to read extra arguments from standard input, one per line until EOF/Ctrl-D. +For example: + + $ echo -e "mysecretcode\n120" | src/bitcoin-cli -stdin walletpassphrase + +It is recommended to use this for sensitive information such as wallet +passphrases, as command-line arguments can usually be read from the process +table by any user on the system. + 0.13.0 Change log ================= |