[BusyBox] Problems with xargs !!!

Thomas Eckert tom at subbi.uni-freiburg.de
Mon Mar 31 07:38:03 UTC 2003


On Mon, 31 Mar 2003, Steven Scholz wrote:

> ~ # find . -name rc.sh | xargs egrep -n "ipcal"
> xargs: invalid option -- n

try:
 ~ # find . -name rc.sh | xargs -- egrep -n "ipcal"

"--" denotes the end of parameters for xargs.



More information about the busybox mailing list