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