xargs

Execute a command with piped arguments coming from another command, a file, etc. The input is treated as a single block of text and split into separate pieces on spaces, tabs, newlines and end-of-file. More information: <https://pubs.opengroup.org/onlinepubs/9699919799/utilities/xargs.html>.

Debian Debian
RUN apt-get update && \ apt-get install -y findutils
Ubuntu
RUN apt-get update && \ apt-get install -y findutils
Alpine
RUN apk add findutils
Arch Arch Linux
RUN pacman -S --noconfirm findutils
image/svg+xml Kali Linux
RUN apt-get update && \ apt-get install -y findutils
Fedora
RUN dnf install -y findutils-1
Raspbian
RUN apt-get update && \ apt-get install -y findutils
click the source code to copy install xargs on any operating system with command-not-found.com