diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-08-20 20:42:35 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-08-20 20:42:35 -0300 |
commit | 3c5c672e47737e6b3342dfeb730ccd8320f2d442 (patch) | |
tree | d08d27539f244e640cf1e92ed0f259929fdf5d32 /task | |
download | utils-organization-3c5c672e47737e6b3342dfeb730ccd8320f2d442.tar.gz utils-organization-3c5c672e47737e6b3342dfeb730ccd8320f2d442.tar.bz2 |
Initial import
Diffstat (limited to 'task')
-rwxr-xr-x | task | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +#!/bin/bash +# +# A very simple taskwarrior wrapper. +# + +# Parameters +TASK="/usr/bin/task" + +# Dispatch +if [ -e ".task" ]; then + $TASK rc.data.location=.task "${@}" +else + $TASK "${@}" +fi |