diff options
author | Simon Parri <simonparri@ganzeria.com> | 2021-04-06 14:16:11 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2021-04-06 14:16:11 -0500 |
commit | 6190f9ae12f3b1992067d6ef5cf40a1e2c7d1ba6 (patch) | |
tree | 439a8fc2821696b3ff6ddc6ff3a148caf62736d7 | |
parent | 6c5764af400195c72ab0c8803cf792b7e785e291 (diff) | |
download | spelling-rbee-6190f9ae12f3b1992067d6ef5cf40a1e2c7d1ba6.tar.gz spelling-rbee-6190f9ae12f3b1992067d6ef5cf40a1e2c7d1ba6.zip |
spelling-rbead: Use stderr for prompts
-rwxr-xr-x | spelling-rbead | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/spelling-rbead b/spelling-rbead index 7540a74..19ca290 100755 --- a/spelling-rbead +++ b/spelling-rbead @@ -13,8 +13,9 @@ OptionParser.new do |opts| end.parse! if !$help - $password = Readline.readline "Password: " - puts + $stderr.print "Password: " + $password = Readline.readline + $stderr.puts $subject ||= "Spelling:" #Net::IMAP.debug = true |