bash Ajouter une nouvelle ligne à Crontab

#!/bin/bash

line="* * * * * /path/to/command"
(crontab -u userhere -l; echo "$line" ) | crontab -u userhere -
Glorious Gannet