Skip to content

Instantly share code, notes, and snippets.

View thierrymarianne's full-sized avatar

Th. Ma. thierrymarianne

  • Greater Paris Metropolitan Area
View GitHub Profile
@thierrymarianne
thierrymarianne / tmux.sh
Last active August 19, 2022 16:16 — forked from chanmix51/tmux.sh
running-commands-in-new-panes-windows-with-tmux.sh
function splitw() {
tmux split-window "$*";
}
function neww() {
tmux new-window "$*";
}