>Does anybody knows if there is a way to "append" (just put at last place >without entering any editor) a schedule to crontab????
ON DEBIAN ONLY: bash$ CRONTAB_NOHEADER=Y (crontab -l ; echo "new crontab line here") | crontab - should do the trick. The CRONTAB_NOHEADER is a debian change from the normal conrtab command. Carl