From 14d758ef42c4d179b228c246028feffa68c243e8 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Thu, 12 Feb 2026 16:33:44 -0800 Subject: [PATCH] bun remote:logs --- scripts/remote-logs.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 scripts/remote-logs.sh diff --git a/scripts/remote-logs.sh b/scripts/remote-logs.sh new file mode 100755 index 0000000..8bd421d --- /dev/null +++ b/scripts/remote-logs.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +set -e + +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" +ROOT_DIR="$SCRIPT_DIR/.." + +source "$ROOT_DIR/scripts/config.sh" + +ssh "$HOST" "journalctl -u toes -n 100"