Rev 11368 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#!/bin/sh#### Rd2txt -- Convert man pages (*.Rd help files) to plain text.revision='$Revision: 1.5.2.1 $'version=`set - ${revision}; echo ${2}`version="Rd2txt ${version}Copyright (C) 2000 The R Core Development Team.This is free software; see the GNU General Public Licence version 2or later for copying conditions. There is NO warranty."usage="Usage: R CMD Rd2txt [options] fileGenerate plain text output from the Rd source specified by file.Options:-h, --help print short help message and exit-v, --version print version info and exitReport bugs to <r-bugs@r-project.org>."case "${1}" in-h|--help)echo "${usage}"; exit 0 ;;-v|--version)echo "${version}"; exit 0 ;;esacexec ${R_HOME}/bin/Rdconv -t txt ${1}### Local Variables: ***### mode: sh ***### sh-indentation: 2 ***### End: ***