This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#! /usr/bin/env sh
|
|
|
|
session="$1"
|
|
cmd="$2"
|
|
|
|
tmux new -s $session -d
|
|
tmux send-keys -t $session "$cmd && exit" C-m
|
|
tmux attach -t $session
|
|
|