Archives / Snippets / Projets

In my .bashrc :

# eenv - needs `fzf`: <https://github.com/junegunn/fzf>
eenv_update () {
  sudo updatedb
  mlocate -r "/bin/activate$" > ~/.eenv
}
eenv () {
  v=$(cat .eenv | fzf) && cd ${v::${#v}-13} && . bin/activate
}