1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-07-01 03:07:13 -07:00
rc/sh/cdbusiest

12 lines
181 B
Plaintext
Raw Normal View History

#!/usr/bin/env zsh
2021-07-29 00:37:35 -07:00
# YES_ZSH
cdbusiest() {
dbusiest | read -r c d
[ -z $c ] && return 1
printf "%s\n" "$c $d"
2021-07-29 00:37:35 -07:00
cd $d
}
[ "${SOURCING:-0}" -gt 0 ] || cdbusiest "$@"