xenocara/app/xlockmore/etc/xlockranddur.pl

7 lines
131 B
Perl
Raw Normal View History

2006-11-26 04:07:42 -07:00
#!/usr/bin/perl -w
# xarand
open(S,"/usr/games/fortune|wc|");
local(@numbers) = split(" ",<S>);
print int $numbers[2]/3;
close(S);