https://github.com/cran/ff
Raw File
Tip revision: 2404d9575a1c5be26ca23f2acce9e800d7c49b84 authored by Jens Oehlschl\xE4gel on 16 September 2009, 00:00:00 UTC
version 2.2-4
Tip revision: 2404d95
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