diff options
author | Colin Okay <colin@cicadas.surf> | 2022-08-15 16:11:38 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-08-15 16:11:38 -0500 |
commit | 4b8e5fce3d1dc322bd941b6b0eec0200f0296bda (patch) | |
tree | 517fab11e79d9fea52d1d2f70ac05b8d82b4affe | |
parent | 6ab7550762e5e2e697ca2accf47f505973a9c51e (diff) |
[modify] board thread listing heading
-rwxr-xr-x | threadcat-list.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/threadcat-list.sh b/threadcat-list.sh index 0be8ca8..9381162 100755 --- a/threadcat-list.sh +++ b/threadcat-list.sh @@ -14,7 +14,7 @@ if [ -z "${BOARD}" ]; then echo $LISTING_HEADING ssh $THREADCAT_USER "ls -lt /opt/threadcat | grep -v ^d" | awk '{ s = ""; for (i = 6; i <= 9; i++) s = s $i " "; print s }' | grep -v '^ *$' else - echo "Listing threads under $BOARD" + echo "LISTING THREADS UNDER $BOARD" echo $LISTING_HEADING ssh $THREADCAT_USER "ls -lt /opt/threadcat/$BOARD | grep -v ^d" | awk '{ s = ""; for (i = 6; i <= 9; i++) s = s $i " "; print s }' | grep -v '^ *$' fi |