Hacker News new | ask | show | jobs
by Someone 19 days ago
> The idea is to define persistent or temporary bookmarks for directories:

  be add work ~/Work
  bm temp build /tmp/build
> and then use them directly in paths:

  cd @work
  ls @work/project
How is that different from, and improve upon

  ln -s ~/Work @work
?

Also, how are temporary bookmarks improvements on

  export build=/tmp/build

?