#!/bin/sh set -eu CODEDIR=~/code/taskwarrior [ -d $CODEDIR/tasklib ] && export PYTHONPATH=$CODEDIR/tasklib for dir in $CODEDIR/taskwarrior/src /usr/bin; do [ ! -x $dir/task ] || exec $dir/task "$@" done echo >&2 E: task binary not found.