xargs

Usage: xargs [OPTIONS] [COMMAND] [ARGS...]

Executes COMMAND on every item given by standard input.

Options:

			-t      Print the command just before it is run
		

Example:

			$ ls | xargs gzip
			$ find . -name '*.c' -print | xargs rm