[R] paste? 'cmd /c "c:\\pheno\\whap --file c:\\pheno\\smri --alt 1"'

Gabor Grothendieck ggrothendieck at gmail.com
Mon Sep 25 22:45:23 CEST 2006


Use single outer quotes so that the inner double quotes are not
interpreted as the end of the string.

cmd <- 'cmd /c "...whatever..." '
system(cmd, intern = TRUE)

On 9/25/06, Boks, M.P.M. <M.P.M.Boks at umcutrecht.nl> wrote:
> Dear R users,
>
> This command works (calling a programm -called whap- with file specifiers etc.):
>
> >system('cmd /c "c:\\pheno\\whap --file c:\\pheno\\smri --alt 1 --perm 500"', intern=TRUE)
>
> Now I need to call it from a loop to replace the "1" by different number, however I get lost using the quotes:
>
> I tried numerous versions of:
>
> >i<-1
> >system(paste(c("'cmd /c "c:\\pheno\\whap --file c:\\pheno\\smri --alt", i, " --perm 500"'", sep="" )), intern=TRUE)
>
> However no luck! I would be gratefull for any help.
>
> Thanks,
>
> Marco
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>



More information about the R-help mailing list