From 76fc44704d0951f84c9e63a73db4c903129f5188 Mon Sep 17 00:00:00 2001 From: Massimo Scagliola Date: Thu, 23 May 2024 12:18:29 +0200 Subject: [PATCH] better prompt --- get-last-rss-post.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-last-rss-post.sh b/get-last-rss-post.sh index 5e8e97d..9c18dbd 100755 --- a/get-last-rss-post.sh +++ b/get-last-rss-post.sh @@ -97,7 +97,7 @@ random() { yes_or_no() { while true; do - read -p "$* [Yes/No/Random]: " ynr + read -p "$* [Y]es/[N]o/[R]andom: " ynr case $ynr in [Yy]*) echo "$EXPRESSION \"$TITLE\"\n\n$LINK" | \ /opt/homebrew/bin/toot post -v $VISIBILITY ; return 0 ;;