Re: [R] get the command line

2009-09-06 Thread Steve Lianoglou
On Mon, Sep 7, 2009 at 12:00 AM, Peng Yu wrote: > On Sun, Sep 6, 2009 at 10:50 PM, Steve > Lianoglou wrote: >> Hi, >> >> On Sun, Sep 6, 2009 at 11:25 PM, Peng Yu wrote: >>> Hi, >>> >>> commandArgs gives me the arguments. I am wondering what command can >>> give the whole command line. >> >> What do

Re: [R] get the command line

2009-09-06 Thread Peng Yu
On Sun, Sep 6, 2009 at 10:50 PM, Steve Lianoglou wrote: > Hi, > > On Sun, Sep 6, 2009 at 11:25 PM, Peng Yu wrote: >> Hi, >> >> commandArgs gives me the arguments. I am wondering what command can >> give the whole command line. > > What does "the whole command line" mean? Are you looking for the > c

Re: [R] get the command line

2009-09-06 Thread Steve Lianoglou
Hi, On Sun, Sep 6, 2009 at 11:25 PM, Peng Yu wrote: > Hi, > > commandArgs gives me the arguments. I am wondering what command can > give the whole command line. What does "the whole command line" mean? Are you looking for the command args in one string? paste(commandArgs(), collapse=" ") Can yo