-
|
I want to capture the output of a command and save it as a devlog note. Something like git log --oneline -5 | devlog add. Is this possible? |
Beta Was this translation helpful? Give feedback.
Answered by
adev0x
Feb 27, 2026
Replies: 1 comment
-
|
Not directly via stdin yet, but you can use command substitution: devlog add "$(git log --oneline -5)"Or with xargs: echo 'my note' | xargs -I {} devlog add {}Stdin support is planned for a future release. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
adev0x
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not directly via stdin yet, but you can use command substitution:
devlog add "$(git log --oneline -5)"Or with xargs:
Stdin support is planned for a future release.