All Questions
1 question
-1
votes
1
answer
4k
views
how to use echo or printf with xargs to iterate over a list from a file?
In poking about with xargs, as here:
nicholas@gondor:~/x$
nicholas@gondor:~/x$ xargs echo < list.txt
1 2 3
nicholas@gondor:~/x$
nicholas@gondor:~/x$ cat list.txt
1
2
3
nicholas@gondor:~/x$
how ...