aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorken restivo <ken@restivo.org>2016-01-12 18:51:57 -0800
committerken restivo <ken@restivo.org>2016-01-12 18:51:57 -0800
commit93096a9db896fb0a7489b661ca744ea75a071198 (patch)
treec3851c9dff27d3d87a960c7fc3b1879117def6c1 /util
parentf757285ea8f0a7f82f84c00061ff1ab6c69a9aa0 (diff)
downloadvolse-hubzilla-93096a9db896fb0a7489b661ca744ea75a071198.tar.gz
volse-hubzilla-93096a9db896fb0a7489b661ca744ea75a071198.tar.bz2
volse-hubzilla-93096a9db896fb0a7489b661ca744ea75a071198.zip
Correct docs.
Diffstat (limited to 'util')
-rwxr-xr-xutil/hz4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/hz b/util/hz
index 74d948bdd..baa5bfb55 100755
--- a/util/hz
+++ b/util/hz
@@ -12,7 +12,7 @@ echo " USER=youruserame "
echo " PASS=yourpass"
echo " HUB=your.hub.domain.org"
echo
-echo "Type \"hz\" (with or without a conf file as an arg), then enter your message. Hit control-d when done."
+echo "Type \"hz\" (with or without a conf file as an arg), then enter your message. Hit ENTER to send."
}
@@ -29,7 +29,7 @@ CUR=`which curl`
[ "$PASS" ] || { echo "no PASS"; usage; exit 1; }
[ "$HUB" ] || { echo "no HUB"; usage; exit 1; }
-echo "enter your message to be posted as $USER @ $HUB, then hit control-d:"
+echo "enter your message to be posted as $USER @ $HUB, then hit ENTER to send:"
(read MSG; curl -ssl -u${USER}:${PASS} --data-urlencode "status=${MSG}" https://${HUB}/api/statuses/update )