atch is a small C utility that lets you attach and detach terminal sessions,
similar to the detach feature of screen/tmux — but without the terminal emulation,
multiple windows, or other overhead.
The key property of atch is transparency. It does not interpose a
terminal emulator between you and your program. The raw byte stream flows
directly from the pty to your terminal, exactly as if you had run the program
in a plain shell. This means:
- Mouse works. Mouse reporting, click events, and drag sequences pass
through unmodified. No escape-sequence re-encoding, no
set -g mouse on, no fighting with terminfo databases. - Scroll works. Programs that use the alternate screen buffer, or that
emit their own scroll sequences, behave identically inside and outside an
atchsession. There is nothing to configure. - Colors and graphics work. True-color, sixel, kitty graphics, OSC sequences — all pass through untouched.
$TERMis unchanged.atchdoes not set or override your terminal type. The program sees exactly the same$TERMyour shell uses.
In contrast, tmux and screen implement their own terminal emulators.
They re-encode the output stream, which frequently breaks mouse support,
scroll behavior, and newer terminal features unless you find and apply the
right obscure configuration knob — and then remember it on every new machine.
With atch there is nothing to remember, because there is nothing in the way.
When a program runs inside an atch session it is protected from the
controlling terminal. You can detach from it, disconnect, and re-attach later
from the same or a different terminal, and the program keeps running
undisturbed.
Session history survives everything. Every byte written to the terminal
is appended to a persistent log file on disk. When you re-attach — whether
the session is still running, crashed, or you have rebooted the machine — the
full output history is replayed to your terminal first, so you can see exactly
what happened and pick up right where you left off. No plugins, no
configuration, no manual script wrappers. Other session managers keep
history only in memory: when the process dies or the machine reboots, the
output is gone. With atch it is on disk until you clear it.
- Attach and detach from running programs
- Multiple clients can attach to the same session simultaneously
- No terminal emulation — raw output stream is passed through unchanged
- Sessions persist across disconnects, crashes, and reboots
- Full session history on disk — every line ever written is saved and replayed on re-attach
- History survives process exit — re-opening a session shows the complete prior output before starting fresh
- Push stdin directly to a running session
- List all sessions with liveness status
- Prevents accidental recursive self-attach
- Tiny and auditable
makeatch [<session> [command...]] Attach to session or create it (default)
atch <command> [options] ...
Sessions are identified by name. A bare name (no /) is stored as a socket
under ~/.cache/atch/. A name containing / is used as-is as a filesystem path.
If no command is given, $SHELL is used.
| Command | Description |
|---|---|
atch [<session> [cmd...]] |
Attach to a session, or create it if it doesn't exist (default behavior). Prints a confirmation when a new session is created. |
attach <session> |
Strict attach — fail if the session does not exist. |
new <session> [cmd...] |
Create a new session and attach to it. Prints a confirmation before attaching. |
start <session> [cmd...] |
Create a new session, detached (atch exits immediately). Prints a confirmation on success. |
run <session> [cmd...] |
Like start, but atch stays in the foreground instead of daemonizing. |
push <session> |
Copy stdin verbatim to the session. |
kill [-f] <session> |
Gracefully stop a session (SIGTERM, then SIGKILL after 5 s if needed). With -f / --force, skip the grace period and send SIGKILL immediately. |
clear <session> |
Truncate the on-disk session log. |
list |
List all sessions. Shows [attached] when a client is connected, [stale] for leftover sockets with no running master. Prints (no sessions) when the list is empty. |
current |
Print the current session name and exit 0 if inside a session; exit 1 silently if not. |
Short aliases: a → attach, n → new, s → start, p → push,
k → kill, l / ls → list.
Options can appear before the subcommand, before the session name, or after the session name.
| Flag | Description |
|---|---|
-e <char> |
Set the detach character. Accepts ^X notation. Default: ^\. |
-E |
Disable the detach character entirely. |
-r <method> |
Redraw method on attach: none, ctrl_l, or winch (default). |
-R <method> |
Clear method on attach: none or move. |
-z |
Disable suspend-key (^Z) processing (pass it to the program instead). |
-q |
Suppress informational messages. |
-t |
Disable VT100 assumptions. |
Use -- to separate atch options from command arguments that start with -:
atch new mysession -- grep -r foo /var/logStart a shell session named work and attach to it:
atch workStart a specific command in a named session:
atch new build -- make -j4Attach to an existing session, creating it if needed:
atch workStrict attach — fail if the session is not running:
atch attach workDetach from a running session: press ^\ (Ctrl-\). The session and its
program keep running.
Re-attach later:
atch workRun a command fully detached (no terminal needed):
atch start daemon myserver
# atch: session 'daemon' startedUse -q to suppress confirmation messages in scripts:
atch start -q daemon myserverSend keystrokes to a running session:
printf 'ls -la\n' | atch push workUse a custom detach character:
atch -e '^A' attach workList all sessions:
atch listKill a session:
atch kill workBy default, session sockets are stored in ~/.cache/atch/. The directory is
created automatically, including ~/.cache if it does not yet exist.
When $HOME is unset or empty, atch looks up the home directory from the
system user database (/etc/passwd). If that also yields nothing useful (or
points to /), sockets fall back to /tmp/.atch-<uid>/.
To use a custom path, include a / in the session name:
atch new /tmp/mysessionatch sets the ATCH_SESSION environment variable inside each session to a
colon-separated ancestry chain of socket paths, outermost first. A
non-nested session has a single path; nested sessions accumulate:
outer session: ATCH_SESSION=/home/user/.cache/atch/outer
inner session: ATCH_SESSION=/home/user/.cache/atch/outer:/home/user/.cache/atch/inner
This serves two purposes: self-attach prevention (any ancestor in the chain
is rejected) and session detection from scripts. Use atch current to get
the human-readable session name — it prints just the basenames separated by
>:
# exit code: 0 inside a session, 1 outside
atch current && echo "inside session: $(atch current)"
# nested session example:
# outer > inner
# shell prompt example (bash/zsh PS1)
PS1='$(atch current 2>/dev/null && echo "[$(atch current)] ")$ 'To test whether you are inside any atch session:
[ -n "$ATCH_SESSION" ] && echo "inside a session"atch keeps two complementary history stores, both replayed automatically
whenever you attach — no configuration required.
Every byte written to the pty is appended to a log file on disk
(~/.cache/atch/<session>.log). The log persists across everything:
- Detach / re-attach — re-attaching to a running session replays the complete history before the live stream begins.
- Session exit — once the program exits, the full output remains on disk.
Running
atch mysessionagain starts a fresh session but first shows everything from the previous one, so you know exactly what it did. - Machine reboot — the log file survives a reboot. The next time you open the session you see the complete prior output before the new shell starts.
- Crash recovery — if the session process is killed unexpectedly, the log is intact. Nothing is lost.
This is fundamentally different from tmux, screen, and dtach: they hold
history only in memory. When the process exits or the machine restarts, the
output is gone. With atch the raw byte stream is on disk until you
explicitly clear it with atch clear <session>.
The log is capped at 1 MB by default; once it exceeds that, only the most recent 1 MB is kept. To change the cap, build with:
make CFLAGS="-DLOG_MAX_SIZE=$((4*1024*1024))"While the session is running, atch maintains a 128 KB ring buffer in the
master process. Because the on-disk log is always present, the ring is not
used for initial attach. Its role is the suspend/resume path: when you
press ^Z to suspend and then resume, the ring replays the most recent output
instantly so your display is current — without reading the log file. It also
acts as a safety fallback in the unlikely event the log cannot be read.
The ring is lost when the master exits; the on-disk log covers that case.
To adjust the ring size, build with:
make CFLAGS="-DSCROLLBACK_SIZE=$((256*1024))"The value must be a power of two.
To wipe the on-disk log and start clean on the next attach:
atch clear mysessionThe original flag-based syntax is still supported:
atch -a <session> # same as: atch attach <session>
atch -A <session> [cmd...] # same as: atch [<session> [cmd...]]
atch -c <session> [cmd...] # same as: atch new <session> [cmd...]
atch -n <session> [cmd...] # same as: atch start <session> [cmd...]
atch -N <session> [cmd...] # same as: atch run <session> [cmd...]
atch -p <session> # same as: atch push <session>
atch -k <session> # same as: atch kill <session>
atch -l # same as: atch list
atch -i # same as: atch current
Existing scripts do not need to be updated.
GPL. Based on dtach by Ned T. Crigler.