aboutsummaryrefslogtreecommitdiffhomepage
path: root/threadcat-read.sh
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-08-15 07:13:37 -0500
committerColin Okay <colin@cicadas.surf>2022-08-15 07:13:37 -0500
commitd6f05e96cb5b139b1ea0ad7a166205d9e31c2440 (patch)
treefafab6e59a0bb871fe794427ff9072ef2fed208f /threadcat-read.sh
parent19a6140f2b3d1494326ca95c27cb02680d62511f (diff)
[refactor] scripts to use env var for users
Diffstat (limited to 'threadcat-read.sh')
-rwxr-xr-xthreadcat-read.sh17
1 files changed, 6 insertions, 11 deletions
diff --git a/threadcat-read.sh b/threadcat-read.sh
index 291cf9e..031ccbe 100755
--- a/threadcat-read.sh
+++ b/threadcat-read.sh
@@ -1,16 +1,11 @@
#!/bin/bash
-CICADAS_USER=$1
-THREAD_NAME=$2
+THREAD_NAME=$1
-if [ ! -z "${CICADAS_USER}" ]; then
- if [ ! -z "${THREAD_NAME}" ]; then
- ssh $CICADAS_USER@cicadas.surf "cat /opt/threadcat/$THREAD_NAME"
- else
- echo You did not provide a thread name.
- echo USAGE: "cat <YOURMESSAGE> | threadcat-write USER THREAD_NAME"
- fi
+if [ ! -z "${THREAD_NAME}" ]; then
+ ssh $CICADAS_USER@cicadas.surf "cat /opt/threadcat/$THREAD_NAME"
else
- echo You did not provide a user name.
- echo USAGE: cat "<YOURMESSAGE> | threadcat-write USER THREAD_NAME"
+ echo You did not provide a thread name.
+ echo USAGE: "threadcat read THREAD_NAME"
fi
+