entomologist/000ddc5eaf58e781c945d6321970ec40/description

13 lines
349 B
Text

add an option to `ent list` to show just the ids of filtered issues
This would be useful in scripts, like:
```
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 ' '
```