#!/bin/bash ORG_GREP='-e .org$ -e .org_archive$ -e .org_done$' if [ "x$1" == "xdoit" ]; then if git status --porcelain|grep '^ M'|grep -q $ORG_GREP; then git commit -m'update org files' $(mr --no-recurse status |grep '^ M'|grep $ORG_GREP|sed 's/^ M//g'); if [ "$2" != "commit" ]; then git push; fi; fi; else emacsclient -n -e '(org-save-all-org-buffers)' >/dev/null 2>&1 mr -d ~ -j5 run update_org_files doit; fi;