Comment on How do I "ls -R | cat | grep print" ?
visnae@lemmy.world 2 years ago
grep -r print .
I.e. Grep on print recursively from . (current directory)
Comment on How do I "ls -R | cat | grep print" ?
visnae@lemmy.world 2 years ago
grep -r print .
I.e. Grep on print recursively from . (current directory)
sighofannoyance@lemmy.world 2 years ago
this is great ty!