diff options
Diffstat (limited to 'threadcat-write.sh')
-rwxr-xr-x | threadcat-write.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/threadcat-write.sh b/threadcat-write.sh index 78b436f..aff794b 100755 --- a/threadcat-write.sh +++ b/threadcat-write.sh @@ -3,7 +3,7 @@ THREAD_NAME=$1 if [ ! -z "${THREAD_NAME}" ]; then - cat - | ssh $CICADAS_USER@cicadas.surf "umask 002 && echo `whoami` -- `date` >> /opt/threadcat/$THREAD_NAME && cat - >> /opt/threadcat/$THREAD_NAME" + cat - | ssh $THREADCAT_USER "umask 002 && echo `whoami` -- `date` >> /opt/threadcat/$THREAD_NAME && cat - >> /opt/threadcat/$THREAD_NAME" echo Posted to $THREAD_NAME else echo You did not provide a thread name. |