Dotfiles, utilities, and other apparatus.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
220 B

  1. #!/bin/bash
  2. sqlite3 "$HOME/notes/metadata.db" <<SQL
  3. .mode list
  4. .separator ' - '
  5. SELECT '~/notes/vimwiki/' || page, title FROM pages
  6. -- WHERE page LIKE 'log/%'
  7. WHERE datetime IS NOT NULL
  8. ORDER BY datetime DESC
  9. SQL