#!/bin/sh if [ "x$1" = "xical" ]; then update_org_ical; elif [ "x$1" = "xmobile" ]; then update_mobile_org; elif [ "x$1" = "xstatus" ]; then mr -d ~ status|grep org; else update_org_files; fi;