Smart Cron Generator

1 What do you want to execute?

Find PHP Command Path on your server:
Run this command in server's terminal:
command -v php

2 How often to execute?

I want to run it minutes.

Quick Cron Job Management (Using Pipe):

Add cron job (one-line command):

(crontab -l; echo "YOUR_CRON_COMMAND") | crontab -

Remove cron job (one-line command):

(crontab -l | grep -v "YOUR_CRON_COMMAND") | crontab -