EX200 Exam QuestionsBrowse all questions from this exam

EX200 Exam - Question 24


SIMULATION -

Configure a task: plan to run echo "file" command at 14:23 every day.

Show Answer
Correct Answer:

Discussion

4 comments
Sign in to comment
Stachomir
Jul 5, 2021

If you want to see output in your console: ps -a (e.x. tt1) crontab -e 23 14 * * * echo "file" > /dev/tt1

xXxM__JxXx
Mar 25, 2022

i tried to tweak the time and check if it will create an output on my terminal. but it does not show after the time pass. does crontab follow local time, universal time or rtc time?

mattd81
May 11, 2022

If you need help remembering the crontab details run: cat /etc/crontab It will remind you what each column is for, minute, hour, etc

14_aman
May 31, 2022

Configure a task: plan to run echo "file" command at 14:23 every day. question never say run echo " file" in natasha user. please confirm i have to take exam next month.

Ares23
Jan 10, 2022

cat <<EOF> /etc/cron.d/echo_file 23 14 * * * /usr/bin/echo 'file' EOF