Replies: 1 comment
-
|
to give an idea of possibilities taskdeps()
{
local deps
local t=${1:?}; shift
(($#)) || set -- all # default report to include completed
deps="$(task $t export | jq -r '.[].depends[]?')"
task ${deps:-0fffffff-ffff-ffff-ffff-ffffffffffff} "$@"
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi All,
Is there a straightforward way to list out the tasks a particular task depends on? I know the
task infoprovides this information but I would rather have it in a more concise format.Beta Was this translation helpful? Give feedback.
All reactions