mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 18:25:57 +01:00
6 lines
171 B
Bash
Executable File
6 lines
171 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [ "$(tmux list-panes | wc -l | cut -d' ' -f1)" -ne 1 ]; then
|
|
tmux kill-pane -t 1
|
|
fi
|
|
tmux split-window -h "bash --rcfile <(echo '. ~/.bashrc;$*')"
|