#!/bin/sh ## ## tmux-session -- simple tmux(1) multi-user session establishment ## Copyright (c) 2015 Ralf S. Engelschall ## Licensed under MIT License ## if [ $# -ne 1 ]; then echo "tmux-session:ERROR: invalid arguments" 1>&2 echo "tmux-session:USAGE: tmux-session " 1>&2 exit 1 fi session="$1"; shift exec @l_prefix@/bin/tmux new-session -A -s "$session" =pod =head1 NAME B -- easy tmux(1) multi-user session establishment =head1 SYNOPSIS B I =head1 DESCRIPTION B is a trivial wrapper for tmux(1) for establishing a multi-user session. The idea is that multiple people log into the same Unix account and all run C to connect to each other. =cut