| Line 74... |
Line 74... |
| 74 |
" Rprof Post process R profiling files\n",
|
74 |
" Rprof Post process R profiling files\n",
|
| 75 |
" Rdconv Convert Rd format to various other formats\n",
|
75 |
" Rdconv Convert Rd format to various other formats\n",
|
| 76 |
" Rdiff difference R output files\n",
|
76 |
" Rdiff difference R output files\n",
|
| 77 |
" Rd2pdf Convert Rd format to PDF\n",
|
77 |
" Rd2pdf Convert Rd format to PDF\n",
|
| 78 |
" Rd2txt Convert Rd format to pretty text\n",
|
78 |
" Rd2txt Convert Rd format to pretty text\n",
|
| 79 |
" tangle Extract S/R code from vignette\n",
|
79 |
" Stangle Extract S/R code from vignette\n",
|
| 80 |
" weave Process vignette documentation\n",
|
80 |
" Sweave Process vignette documentation\n",
|
| 81 |
" config Obtain configuration information about R\n"
|
81 |
" config Obtain configuration information about R\n"
|
| 82 |
" open Open a file via Windows file associations\n"
|
82 |
" open Open a file via Windows file associations\n"
|
| 83 |
" texify Process a latex file\n"
|
83 |
" texify Process a latex file\n"
|
| 84 |
);
|
84 |
);
|
| 85 |
|
85 |
|
| Line 450... |
Line 450... |
| 450 |
} else if (!strcmp(argv[cmdarg], "Rd2pdf")) {
|
450 |
} else if (!strcmp(argv[cmdarg], "Rd2pdf")) {
|
| 451 |
snprintf(cmd, CMD_LEN,
|
451 |
snprintf(cmd, CMD_LEN,
|
| 452 |
"%s/%s/Rterm.exe -e tools:::..Rd2pdf() R_DEFAULT_PACKAGES= LC_ALL=C --vanilla --slave --args ",
|
452 |
"%s/%s/Rterm.exe -e tools:::..Rd2pdf() R_DEFAULT_PACKAGES= LC_ALL=C --vanilla --slave --args ",
|
| 453 |
getRHOME(3), BINDIR);
|
453 |
getRHOME(3), BINDIR);
|
| 454 |
PROCESS_CMD("nextArg");
|
454 |
PROCESS_CMD("nextArg");
|
| 455 |
} else if (!strcmp(argv[cmdarg], "Sweave") || !strcmp(argv[cmdarg], "weave")) {
|
455 |
} else if (!strcmp(argv[cmdarg], "Sweave")) {
|
| 456 |
snprintf(cmd, CMD_LEN,
|
456 |
snprintf(cmd, CMD_LEN,
|
| 457 |
"%s/%s/Rterm.exe --no-restore --slave -e utils:::.Sweave() --args ",
|
457 |
"%s/%s/Rterm.exe --no-restore --slave -e utils:::.Sweave() --args ",
|
| 458 |
getRHOME(3), BINDIR);
|
458 |
getRHOME(3), BINDIR);
|
| 459 |
PROCESS_CMD("nextArg");
|
459 |
PROCESS_CMD("nextArg");
|
| 460 |
} else if (!strcmp(argv[cmdarg], "Stangle") || !strcmp(argv[cmdarg], "tangle")) {
|
460 |
} else if (!strcmp(argv[cmdarg], "Stangle")) {
|
| 461 |
snprintf(cmd, CMD_LEN,
|
461 |
snprintf(cmd, CMD_LEN,
|
| 462 |
"%s/%s/Rterm.exe --vanilla --slave -e utils:::.Stangle() --args ",
|
462 |
"%s/%s/Rterm.exe --vanilla --slave -e utils:::.Stangle() --args ",
|
| 463 |
getRHOME(3), BINDIR);
|
463 |
getRHOME(3), BINDIR);
|
| 464 |
PROCESS_CMD("nextArg");
|
464 |
PROCESS_CMD("nextArg");
|
| 465 |
} else {
|
465 |
} else {
|