10 lines
135 B
Plaintext
10 lines
135 B
Plaintext
|
#! /usr/bin/env sh
|
||
|
|
||
|
session="$1"
|
||
|
cmd="$2"
|
||
|
|
||
|
tmux new -s $session -d
|
||
|
tmux send-keys -t $session "exec $cmd" C-m
|
||
|
tmux attach -t $session
|
||
|
|