Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the 'Display system uptime in a Finder dialog' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
Display system uptime in a Finder dialog
Authored by: andrew_zinn on Tue, Mar 18 2008 at 10:01AM PDT
Somewhere along the way I downloaded this version of an Uptime applescript from Apple:

set this_data to do shell script "uptime"
set x to the offset of "up" in this_data
set this_data to (characters x thru -1 of this_data) as string
display dialog this_data buttons {"OK"} default button 1


[ Reply to This | # ]