[R] R system command does not work with objects/variables

2011-08-23 Thread syrvn
.789695.n4.nabble.com/R-system-command-does-not-work-with-objects-variables-tp3762544p3762544.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read

Re: [R] R system command does not work with objects/variables

2011-08-23 Thread Prof Brian Ripley
' 'p3') Can anyone help? Best, syrvn -- View this message in context: http://r.789695.n4.nabble.com/R-system-command-does-not-work-with-objects-variables-tp3762544p3762544.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r

Re: [R] R system command does not work with objects/variables

2011-08-23 Thread syrvn
Hi, it works great with the paste command! thanks a lot! Best, syrvn -- View this message in context: http://r.789695.n4.nabble.com/R-system-command-does-not-work-with-objects-variables-tp3762544p3762583.html Sent from the R help mailing list archive at Nabble.com

Re: [R] R system command does not work with objects/variables

2011-08-23 Thread Johann Hibschman
syrvn ment...@gmx.net writes: If I store the path in a variable/object and call the perl script again it does not run and I don't know how to overcome that issue. p1 - ../path1 p2 - ../path2 p3 - ../path3 system(perl p1 p2 p3) You want something like: system(paste(perl, p1, p2, p3))