entomologist/9f0d77fa44e265a4e316f94be42554a5/description
2025-07-21 12:58:30 -06:00

11 lines
347 B
Text

`ent list` should take a git-like --pretty=format:
The immediate use is:
* list all issues in state=inprogress, but only tell me the assignees of each
I currently do this with a slow and awkward shell script:
```
for ISSUE_ID in $(ent list state=inprogress | grep ' ' | cut -f 1 -d ' '); do
ent show "${ISSUE_ID}" | grep -i assign
done
```