crontab: 12 3 12 4 4 cat /etc/passwd
Hi,
If I configure a crontab like below.
12 3 12 4 4 cat /etc/passwd
I know that the cat command will get executed at the configured time. But where will the output of that command go?
If it is something like below, then out put will be routed to /tmp/file1.
12 3 12 4 4 cat /etc/passwd > /tmp/file1
Could any one please help me in understanding this?
|