#!/bin/sh

TMP=/tmp/crontab.$$

crontab -l 2>/dev/null | grep -v "buildlog" > $TMP
cat >> $TMP << EOF
33 0,6,12,18 * * *	$RDHOME/bin/rd rdbuildlog logfile
EOF
crontab $TMP
/bin/rm $TMP
