/[cvs]/joko/Scripts/psh/psh.pl
ViewVC logotype

Contents of /joko/Scripts/psh/psh.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (show annotations)
Sat Jun 15 03:35:17 2002 UTC (22 years, 1 month ago) by cvsjoko
Branch: MAIN
Changes since 1.1: +3 -3 lines
File MIME type: text/plain
"use lib '...'"  --> "push @INC, '...'"

1 #!/usr/bin/perl
2
3 #use warnings;
4 use strict;
5
6 BEGIN {
7 sub RUNNING_IN_HELL () { $^O eq 'MSWin32' }
8 if (RUNNING_IN_HELL()) {
9 push @INC, '../perl-libs/lib_win32';
10 } else {
11 push @INC, '../perl-libs/lib_linux';
12 }
13 push @INC, '../perl-libs/lib_poe';
14 }
15
16 use lib 'lib';
17 use MJAM;
18 use POE;
19
20 MJAM::Command::Core::start('cmdcore');
21
22 # start a core-shell-console
23 #$poe_kernel->post( cmdcore => docmd => 'tell console start core-shell');
24
25 # start a login-shell-console
26 $poe_kernel->post( cmdcore => docmd => 'tell console start login-shell');
27
28 $poe_kernel->run();

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed