| 123456789101112131415161718192021222324 | #!/bin/shYEAR=$1if [ ! -e "${HOME}/org/notes/${YEAR}.org" ] ; then    touch "${HOME}/org/notes/${YEAR}.org"    cat <<EOF > "${HOME}/org/notes/${YEAR}.org"#+Title: Notes from ${YEAR}#+AUTHOR: Sam Flint#+EMAIL: swflint@flintfam.org#+DATE: \today#+INFOJS_OPT: view:info toc:nil path:http://flintfam.org/org-info.js#+OPTIONS: toc:nil H:5 ':t *:t d:nil stat:nil todo:nil#+LATEX_CLASS_OPTIONS: [10pt,twocolumn]#+LATEX_HEADER: \usepackage[landscape,margin=0.125 in]{geometry}#+LATEX_HEADER: \pagestyle{empty}EOFfiecho "${HOME}/org/notes/${YEAR}.org"cd "${HOME}/org/" || exit 1git add "notes/${YEAR}.org" && git commit -m "Added the notes file for ${YEAR}"
 |