byobu
This commit is contained in:
parent
ab50952317
commit
75c3627d2c
1 changed files with 8 additions and 4 deletions
|
@ -1,21 +1,25 @@
|
|||
bb() {
|
||||
bb() { sh_a__byo_bu "${@}"; }
|
||||
sh_a__byo_bu() {
|
||||
byobu \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
bba() {
|
||||
bba() { sh_a__byo_bu_attach "${@}"; }
|
||||
sh_a__byo_bu_attach() {
|
||||
byobu \
|
||||
attach-session \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
bbl() {
|
||||
bbl() { sh_a__byo_bu_ls "${@}"; }
|
||||
sh_a__byo_bu_ls() {
|
||||
byobu \
|
||||
ls \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
bbnd() {
|
||||
bbnd() { sh_a__byo_bu_new_detach "${@}"; }
|
||||
sh_a__byo_bu_new_detach() {
|
||||
byobu \
|
||||
new-session \
|
||||
-d \
|
||||
|
|
Loading…
Reference in a new issue