thank you
Comment on How do I "ls -R | cat | grep print" ?
Shadow@lemmy.ca 10 months ago
To answer your og question since it is a valuable tool to know about, xargs.
ls | xargs cat | grep print
Should do what you want. Unless your file names have spaces, then you should probably not use this.
sighofannoyance@lemmy.world 10 months ago
018118055@sopuli.xyz 10 months ago
find -print0 | xargs -0 can handle spaces