Skip to content

Instantly share code, notes, and snippets.

@Raimondi
Forked from benjaminhawkeslewis/gist:1366855
Created July 13, 2012 14:57
Show Gist options
  • Save Raimondi/3105334 to your computer and use it in GitHub Desktop.
Save Raimondi/3105334 to your computer and use it in GitHub Desktop.
Create or reattach tmux session oneliner
function tmux_create_or_reattach() { tmux has-session -t $1 && tmux attach -t $1 || tmux -u -L $1; }
tmux_create_or_reattach weechat-curses
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment