7 lines
116 B
Bash
7 lines
116 B
Bash
|
if [[ "$1" == "" ]]; then
|
||
|
bt list
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
bt activate --focused $(echo "$@" | awk '{print $1}') &> /dev/null
|