On peut simplment ajouter une tache cron enregistrée dans un fichier à l'aide la commande suivante

crontab -l >/tmp/cron && cat mycron.cron >>/tmp/cron && crontab /tmp/cron; rm -f /tmp/cron

ou

crontab -l |cat update_stats.cron - |crontab

Mais il est aussi possible si vous avez plusieurs ligne a insérer à partir d'un fichier de faire la meme chose avec un

ca marche aussi avec echo c'est juste un peut plus compliqué

crontab -l|sed -e "s/$/\\\\\n/g" | xargs echo -e "* 1 * * * montest \n" |crontab -