From ee4837b0fb709ccc9c61e8489a8cae70e33f2d77 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Sat, 30 Dec 2023 20:11:37 +1100 Subject: [PATCH] rename zap_post to streams_post --- util/{zap_post => streams_post} | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) rename util/{zap_post => streams_post} (54%) diff --git a/util/zap_post b/util/streams_post similarity index 54% rename from util/zap_post rename to util/streams_post index 8a8b8cccb..b723c9cca 100755 --- a/util/zap_post +++ b/util/streams_post @@ -3,16 +3,16 @@ # Simple, minimalist command line tool to post status to hubzilla via the API. Requires curl. # Put it in your path, and sneeze your statuses to the zot network from your shell. -CONF=${HOME}/.zap_post +CONF=${HOME}/.streams_post usage () { -echo "usage: util/zap_post [conffile]" -echo "Create a conf file, either in .zap_post in your home directory, or supplied as an arg" +echo "usage: util/streams_post [conffile]" +echo "Create a conf file, either in .streams_post in your home directory, or supplied as an arg" echo " USER=youruserame " echo " PASS=yourpass" -echo " HUB=your.hub.domain.org" +echo " SITE=your.site.domain.org" echo -echo "Type \"zap_post\" (with or without a conf file as an arg), then enter your message. Use ctrl-D to send.." +echo "Type \"util/streams_post\" (with or without a conf file as an arg), then enter your message. Use ctrl-D to send.." } @@ -27,12 +27,12 @@ CUR=`which curl` [ "$USER" ] || { echo "no USER"; usage; exit 1; } [ "$PASS" ] || { echo "no PASS"; usage; exit 1; } -[ "$HUB" ] || { echo "no HUB"; usage; exit 1; } +[ "$SITE" ] || { echo "no SITE"; usage; exit 1; } -echo "enter your message to be posted as $USER @ $HUB, then hit Ctrl-D to send." +echo "enter your message to be posted as $USER @ $SITE, then hit Ctrl-D to send." MSG=$(cat) -curl -ssl -u${USER}:${PASS} --data-urlencode "body=${MSG}" https://${HUB}/api/z/1.0/item/update +curl -ssl -u${USER}:${PASS} --data-urlencode "body=${MSG}" https://${SITE}/api/z/1.0/item/update