<@UB2J9BQA0>: it would with xargs
# development
w
@hundreds-father-404: it would with xargs
☝️ 1
h
what would this be?
w
xargs
is a unix tool to take
stdin
and turn it into args to a process
h
yes, but I mean what is the actual command to use this (if you know off the top of your head)
w
Copy code
./pants --no-v2-ui dependees helloworld/util | xargs ./pants list
h
It worked! Thanks!