Advertisement
Guest User

Untitled

a guest
Jul 13th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1.  
  2. pi@raspberrypi:~ $ crontab -l
  3.  
  4. # Edit this file to introduce tasks to be run by cron.
  5. #
  6. # Each task to run has to be defined through a single line
  7. # indicating with different fields when the task will be run
  8. # and what command to run for the task
  9. #
  10. # To define the time you can provide concrete values for
  11. # minute (m), hour (h), day of month (dom), month (mon),
  12. # and day of week (dow) or use '*' in these fields (for 'any').#
  13. # Notice that tasks will be started based on the cron's system
  14. # daemon's notion of time and timezones.
  15. #
  16. # Output of the crontab jobs (including errors) is sent through
  17. # email to the user the crontab file belongs to (unless redirected).
  18. #
  19. # For example, you can run a backup of all your user accounts
  20. # at 5 a.m every week with:
  21. # 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
  22. #
  23. # For more information see the manual pages of crontab(5) and cron(8)
  24. #
  25. # m h dom mon dow command
  26.  
  27.  
  28. #skripta koja mjeri download,upload i ping na routeru svakih sat vremena:
  29. 0 * * * * ./home/pi/speedtest/speedtest-cron.sh
  30.  
  31. #isto kao gore, smao svake minute:
  32. * * * * ./home/pi/speedtest/speedtest-cron.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement