Posts

Showing posts from March, 2012

XARGS

xargs: Execute a command, passing constructed argument list(s). The arguments are typically a long list of filenames (generated by ls or find) that are passed to xargs via a pipe. Syntax       xargs [ options ] [ command ] Options    -0    --null             Expect filenames to be terminated by NULL instead of whitespace.             Do not treat quotes or backslashes specially.    -e[ string ]    -E[ string ]    --eof[= string ]             Set EOF to _ or, if specified, to string.    --help             Print a summary of the options to xargs and then exit.    -i[ string ]    -I[ string ]    --replace[= strin...