Update clean-tw.sh

Automated confirmation process when deleting multiple tasks
This commit is contained in:
Daniel Mowitz 2023-10-16 13:42:10 +02:00
parent c56f8995e1
commit 18aadb6673

View file

@ -5,6 +5,7 @@ function get_task_value {
}
ids=$(task limit:none recur | grep -E '^ ?[[:digit:]].*[[:alpha:]].*[[:digit:]]$' | sed -E 's/^ ?([[:digit:]]+) .*/\1/')
excluded_ids=$(for id in $ids
do
task_data="$(task $id)"
@ -18,5 +19,5 @@ del_ids=$(for id in $excluded_ids $ids
if [ ! -z "$del_ids" -a "$del_ids" != " " ]
then
task $del_ids del
{ echo 'all'; yes n; } | task $del_ids del
fi