Hacker News new | ask | show | jobs
by nanomonkey 2821 days ago
I use multiple files, one per topic all in one folder. There is a file called main.org that contains the following embedded code, which creates an index of all of my org files

  * Org-files
  #+BEGIN_SRC sh
      for file in $(ls *.org)
      do 
      echo "[[~/org/$file][$file]]"
      done
  #+END_SRC
1 comments

That's a clever use of org-babel!