#!/bin/bash TARGET_DIR="../org/" ROOT_DIR="../../" find "$TARGET_DIR" -type f -name "*.org" -exec emacs -nw {} -f org-html-export-to-html --kill \; find "$ROOT_DIR" -type f -name "*~" -exec rm {} \; git add "$ROOT_DIR" && git commit -m "$1" && git push