The R Project SVN R

Rev

Rev 53594 | Rev 72823 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 53594 Rev 53611
Line 1... Line 1...
1
 
1
 
2
R version 2.13.0 Under development (unstable) (2010-11-13 r53583)
2
R version 2.13.0 Under development (unstable) (2010-11-15 r53605)
3
Copyright (C) 2010 The R Foundation for Statistical Computing
3
Copyright (C) 2010 The R Foundation for Statistical Computing
4
ISBN 3-900051-07-0
4
ISBN 3-900051-07-0
5
Platform: i386-apple-darwin9.8.0/i386 (32-bit)
5
Platform: i386-apple-darwin9.8.0/i386 (32-bit)
6
 
6
 
7
R is free software and comes with ABSOLUTELY NO WARRANTY.
7
R is free software and comes with ABSOLUTELY NO WARRANTY.
Line 264... Line 264...
264
o2.txt:
264
o2.txt:
265
stderr 1
265
stderr 1
266
> 
266
> 
267
> unlink(c(tmp, outs))
267
> unlink(c(tmp, outs))
268
> 
268
> 
-
 
269
> print(system("test-system2 5"))
-
 
270
stdout 1
-
 
271
stderr 1
-
 
272
[1] 5
-
 
273
> system("test-system2 6", intern = TRUE)
-
 
274
stderr 1
-
 
275
Warning: running command 'test-system2 6' had status 6
-
 
276
[1] "stdout 1"
-
 
277
> print(system2("test-system2", "7"))
-
 
278
stdout 1
-
 
279
stderr 1
-
 
280
[1] 7
-
 
281
> system2("test-system2", "8", stdout=TRUE)
-
 
282
stderr 1
-
 
283
Warning: running command ''test-system2' 8' had status 8
-
 
284
[1] "stdout 1"
-
 
285
>