Displaying 1 result from an estimated 1 matches for "perlcmd".
Did you mean:
perlbmk
2010 Jan 01
0
R Wish List
...n, ruby. It would be sufficient that there is a
package that contains the scripting language executable so an R
package that uses perl, say, could simply list such a package for perl
in Depends: in DESCRIPTION file and thereby be sure that perl were
available. They could then access it via:
perlcmd <- if (.Platform$OS == "windows") "perl.exe" else "perl"
perl <- system.file(perlcmd, package = "perl")
cmd <- paste(perl, my_command)
system(cmd)
An actual interface to R, as in tcltk, while nice to have is not an
essential part of...