You can always invoke a system command, for example. with system2 function:
input <- '~/Projekty/stringi/man/stri_length.Rd' output <- '/tmp/out.txt' system2('R', paste('CMD Rdconv -t txt', filename, '-o', output)) readLines(output)
Make sure R is in the system search path. If not, replace the first argument to system2() above with the full path, for example. C:\Program Files\R\3.1\bin\R.exe .
source share