R. L. Dane :debian: :openbsd:🧉 on Nostr: Man, I should've written this shell function ages ago: function bm { #bookmarks local ...
Man, I should've written this shell function ages ago:
function bm { #bookmarks
local bmdir=~/.bookmarks
local selection
if [[ -d $bmdir ]]; then
cd $bmdir
selection="$(ls |fzf)"
if [[ $selection ]]; then
cd "$selection" && ( cd -P .; pwd )
fi
else
warn "No bookmarks directory ($bmdir); quitting..."
return 1
fi
}
So useful! :D
function bm { #bookmarks
local bmdir=~/.bookmarks
local selection
if [[ -d $bmdir ]]; then
cd $bmdir
selection="$(ls |fzf)"
if [[ $selection ]]; then
cd "$selection" && ( cd -P .; pwd )
fi
else
warn "No bookmarks directory ($bmdir); quitting..."
return 1
fi
}
So useful! :D