xargs

xargs - short for "eXtended ARGuments" is a command on Unix and most Unix-like operating systems used to build and execute commands from standard input. It converts input from standard input into arguments to a command.

Example:

date | xargs echo
echo doesn't accept parameters from STDIN, so the STDIN is converted by xargs to arguments for echo