Julien Delplanque wrote:
>I can't find out how to get the uptime of the OS from pharo
�� (FileSystem disk root / 'proc' / 'uptime') asFileReference readStreamDo: [:s | s upToEnd asString ]
or if you load the "OSUnix" project in Pharo 4 from the config browser
it is even easier:
�� �� UnixSystem upTime
bye
T.