edit description of issue 000ddc5eaf58e781c945d6321970ec40

This commit is contained in:
Sebastian Kuzminsky 2025-07-19 10:53:55 -06:00
parent 03c1ac3bb3
commit 5ef9bcbb50

View file

@ -6,3 +6,8 @@ for ISSUE_ID in $(ent list --ids-only ${MY_FILTER}); do
# do thing with ${ISSUE_ID}
done
```
For now you can sort of emulate this with:
```
ent list state=done done-time=2026-01-01T00:00:00-06:00.. | grep ' ' | cut -f 1 -d ' '
```