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.
|
#!/bin/zsh
|
|
|
|
# grep notes dir for open tasks. Very much a stub; worth elaborating on in
|
|
# some more useful way eventually. Currently invoked by a tasks-auto.wiki.
|
|
|
|
grep --exclude-dir="*logscratch" -rino -- "- \[ \].*$" ~/notes/vimwiki | \
|
|
perl -pe 's{^/home/brennen/notes/vimwiki/(.*?)\.wiki:(\d+):- \[ \] (.*?)$}{ - [[$1|$1]] - ($2) $3}'
|