9 lines
117 B
Bash
9 lines
117 B
Bash
|
|
||
|
if hash gx-search-baloo >/dev/null 2>&1 ; then
|
||
|
function godir() {
|
||
|
dir=$(gx-search-baloo "$@")
|
||
|
cd "$dir"
|
||
|
}
|
||
|
fi
|
||
|
|