diff options
-rwxr-xr-x | threadcat-read.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/threadcat-read.sh b/threadcat-read.sh new file mode 100755 index 0000000..291cf9e --- /dev/null +++ b/threadcat-read.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +CICADAS_USER=$1 +THREAD_NAME=$2 + +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 +else + echo You did not provide a user name. + echo USAGE: cat "<YOURMESSAGE> | threadcat-write USER THREAD_NAME" +fi |