TermBlog

SSH Workflows for Readers and Writers

February 5, 2026 · 1 min read
Tags: sshworkflowautomation

SSH Workflows for Readers and Writers

Most people see SSH and think remote shell access. In TermBlog, SSH is also your content API.

Interactive mode

Standard SSH gives you the full terminal app:

ssh termblog.com -p 2222

This is ideal for browsing posts, searching tags, and reading in a low-latency interface.

Command mode

TermBlog also supports non-interactive commands over SSH.

ssh termblog.com posts
ssh termblog.com read welcome-to-termblog
ssh termblog.com search terminal
ssh termblog.com rss > feed.xml

This enables lightweight automation without adding another HTTP auth surface.

Example: morning digest script

#!/usr/bin/env bash
set -euo pipefail

ssh termblog.com posts | head -n 10

Why this model works

One protocol, two use cases.

Good defaults for production

TermBlog does not fight terminal-native habits. It leans into them.