Raspberry Pi - Automation and Scheduling
What will be the output of this Python script scheduled as a cron job on Raspberry Pi?
import datetime
with open('/home/pi/log.txt', 'a') as f:
f.write(f"Run at {datetime.datetime.now()}\n")Assuming the cron job runs every minute, what happens?
