Posted by: Pdfprep
Post Date: December 17, 2020
CORRECT TEXT
Configure a task: plan to run echo "file" command at 14:23 every day.
Answer: see explanation below.
Explanation
(a) Created as administrator
# crontab -u natasha -e
23 14 * * * /bin/echo "file"
(b)Created as natasha
# su – natasha
$ crontab -e
23 14 * * * /bin/echo "file"
Leave a Reply