You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
426 B
34 lines
426 B
#!/usr/bin/perl |
|
|
|
# simplified milkbone shell |
|
|
|
use 5.006; # milkbone might work on 5.004 or lower; someone should find out... |
|
|
|
use warnings; |
|
use strict; |
|
|
|
use lib 'lib'; |
|
use lib '.'; |
|
|
|
use Milkbone; |
|
|
|
$| = 1; |
|
|
|
sub main |
|
{ |
|
Milkbone->init(); |
|
|
|
hook("load_options", -file => 'mosh.conf'); |
|
|
|
hook("load_plugins"); |
|
hook("pre_mainloop"); |
|
|
|
hook("create_logon_prompt"); |
|
|
|
MOSLoop; |
|
|
|
hook("post_mainloop"); |
|
} |
|
|
|
# off it goes... |
|
main();
|
|
|