I’m trying to practice crontab so I add the following line in the editor:
`30 * * * * ./goal node status -d data`
so I thought the result would be displaying the node status every 30 minutes in the command prompt, but seems it’s not working in this way.
Is it because the command is executed in the background and needs a specific line to print it out in the command prompt or is it because I’m using crontab wrong?