Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Doesn't have to be AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Doesn't have to be AppleScript
Authored by: readparse on Jan 24, '03 02:57:43PM
the "open" command from the terminal also opens URLs:
open "http://www.macosxhints.com/"
You can do the same thing in a shell script:
#!/bin/sh
open "http://www.macosxhints.com/"


[ Reply to This | # ]
Doesn't have to be AppleScript
Authored by: bluehz on Jan 25, '03 10:30:18AM

This is the method I create a simple shell script (as above) and then a cronjob to run it every day/night, whatever you want...



[ Reply to This | # ]