![]() |
2009-11-13
, 21:59
|
Posts: 631 |
Thanked: 837 times |
Joined on May 2007
@ Milton, Ontario, Canada
|
#2
|
Hi guys.
Was wondering what the convention for basic timed events is on the n900. I've seen a lot of varying information about alarm, cron, etc but haven't managed to find a definitive.
If you had to set up some very basic timed events, eg. running a simple script every 30 minutes, how would you do it?
As a note, it needs to be easily modifiable (changing those 30 minutes to 5 minutes or 12 hours, and so on).
Thanks!
The Following 3 Users Say Thank You to jolouis For This Useful Post: | ||
|
2009-11-13
, 22:11
|
Guest |
Posts: n/a |
Thanked: 0 times |
Joined on
|
#4
|
![]() |
2009-11-14
, 05:15
|
Posts: 631 |
Thanked: 837 times |
Joined on May 2007
@ Milton, Ontario, Canada
|
#5
|
The Following 11 Users Say Thank You to jolouis For This Useful Post: | ||
![]() |
2009-12-01
, 10:27
|
|
Posts: 600 |
Thanked: 742 times |
Joined on Sep 2008
@ England
|
#7
|
If you had to set up some very basic timed events, eg. running a simple script every 30 minutes, how would you do it?
#!/bin/ash #'ash' is the command interpreter on the N900 while true; do echo "foo" #replace this with your command sleep 1800 #do nothing for 30 minutes done
![]() |
2009-12-07
, 11:31
|
Posts: 22 |
Thanked: 1 time |
Joined on Apr 2008
|
#8
|
![]() |
2009-12-07
, 11:50
|
|
Posts: 1,217 |
Thanked: 446 times |
Joined on Oct 2009
@ Bedfordshire, UK
|
#9
|
The Following User Says Thank You to Fargus For This Useful Post: | ||
![]() |
2009-12-10
, 01:08
|
Posts: 486 |
Thanked: 154 times |
Joined on Sep 2009
@ New York City
|
#10
|
Was wondering what the convention for basic timed events is on the n900. I've seen a lot of varying information about alarm, cron, etc but haven't managed to find a definitive.
If you had to set up some very basic timed events, eg. running a simple script every 30 minutes, how would you do it?
As a note, it needs to be easily modifiable (changing those 30 minutes to 5 minutes or 12 hours, and so on).
Thanks!