One argument version of xargs?
Hello all,
Say I do a cut of a text file and get this result:
$ cut -f2 foo.txt
a
b
c
d
e
f
How would I pipe that to a command that would individually execute each argument? If I use xargs, the column would be combined which works great for commands that accept multiple arguments but the command I'm trying to pipe to only accepts one at a time.
Thanks!
|