Help for this page

Select Code to Download


  1. or download this
    $ cd $HOME
    $ ln -s /tmp softlink
    $ perl softlink/mylog.pl
    
  2. or download this
    main:: path/mylog.pl (23)> abs_path=/tmp/mylog.pl
    main:: path/mylog.pl (26)> rel2abs=/home/maletin/softlink/mylog.pl
    MyLog::init /home/maletin/MyLog.pm (11)> INIT
    MyLog::path /home/maletin/MyLog.pm (16)> /home/maletin/MyLog.pm
    
  3. or download this
    #! perl -w
    # mylog.pl
    ...
    
    MyLog->init($log4perl_logger);
    MyLog->path();
    
  4. or download this
    package MyLog;
    
    ...
    }
    
    1;