Ssh – How to add a cron via ssh

cronssh

I want to create a crontab to execute a php script, however I have to setup the cron via ssh and have absolutely no idea how to go about it. I've tried searching however the results always come back for executing ssh via a cron and not how to set one up.

Can someone point me in the right direction to some documentation?

Many thanks.

Best Answer

crontab -e is used to edit the cron entries for the current user. See the crontab(1) and crontab(5) man pages for more details.

Related Topic