Hi friends! 🤓 I am on a gnulinux and trying to list all files in the active directory and it’s subdirectories. I then want to pipe the output to “cat”. I want to pipe the output from cat into grep.

Please help! 😅

  • 018118055@sopuli.xyz
    link
    fedilink
    arrow-up
    6
    ·
    edit-2
    5 months ago

    find -print0 | xargs -0 can handle spaces

    Edit and you probably want xargs --exec instead of piping after