cat rowskey: Read list of files from stdin #1653
-
Is your feature request related to a problem? Please describe. Right now, to
or
But I think the easiest way would be to:
This is currently not supported, as Describe the solution you'd like
and (independent of file name):
and:
One disadvantage is that it would not allow for mixed inputs (i.e. both files and lists of files) as arguments:
but this could be achieved with:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Thanks @fgvieira for the detailed request. However, qsv's Extended Input Support is used by other commands apart from Just the same, I'll add your request to the backlog. |
Beta Was this translation helpful? Give feedback.
-
I believe the solution is easy by the use of xargs. It becomes |
Beta Was this translation helpful? Give feedback.
-
@13minutes-yt 's solution is cleaner and more elegant. Moving this to Discussions so other folks can discover it if they have a similar problem. |
Beta Was this translation helpful? Give feedback.
I believe the solution is easy by the use of xargs. It becomes
find . -name '*.tsv' | xargs qsv cat rowskey --group fullpath --group-name path