i have problem with crontable in shell I always write cronjob like this
0 * * * * /tmp/myscript
but now im on different shell and to use my script i need write like this
bash-4.2$ bash /tmp/myscript
And thats problem because when I write cronjob like this
* * * * * /tmp/myscript or bash /tmp/myscript ---> thats not work
How to solve this problem?