My Custom Command Line Functions

August 2023
#
# tmux attach 

function ta() {
  tmux attach -t $1
}


#
# tmux attach list sessions

function tls() {
  tmux ls
}
end of line