#!/bin/sh # Fake kill for testing tmux-util. # # Records every invocation to $FAKE_TMUX_DIR/kill.log as one line per call. # Format: kill # Exits 0 unconditionally — tests assert on the log, not the actual signaling. : "${FAKE_TMUX_DIR:?FAKE_TMUX_DIR must be set}" printf 'kill %s\n' "$*" >> "$FAKE_TMUX_DIR/kill.log" exit 0