Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl
BEGIN{
$dormant_days=90;
$threshold=time - (24*3600*$dormant_days)
}
open CMD, "lsuser -a time_last_login ALL|";
while ( <CMD> )
{
print if /time_last_login=(\d+)/ && ( $1 < $threshold);
print unless /time_last_login/;
}