https://github.com/cran/ff
Raw File
Tip revision: adea9ff3a2c58ae5a0639d1c49157cd0be8b2e16 authored by Jens Oehlschl\xE4gel on 16 September 2009, 00:00:00 UTC
version 2.2-2
Tip revision: adea9ff
prebuild.sh
#!/bin/sh

# Produce the Rd-files for the documentation from the R source files
# 
# Prerequisites:
#   - Perl
#   - R_HOME must be set to the directory where R is installed

echo "#### starting prebuild.sh"

mkdir -p man
cd man
find ../R -name '*.[rR]' -exec cat \{\} \; | perl ../exec/make_rd.pl 
cd ..

echo "#### prebuild.sh completed!"
back to top