/agenda

Command line utility to pull an agenda out of a journal text file.

Primary LanguageGoGNU General Public License v3.0GPL-3.0

About

Searches a file for an agenda and prints it.

Use

Example Bash profile use:

alias today="agenda -path $HOME/Journal/{YYYY}/{MM}-{DD}.md"

Example PowerShell profile use:

function Get-JournalAgenda() {
    agenda.exe -path "$HOME/Journal/{YYYY}/{MM}-{DD}.md"
}
New-Alias today Get-JournalAgenda