Help for this page

Select Code to Download


  1. or download this
    LED.cfg
    dev_lcd
    ...
    pro_lcd
    AppID=APTC_RDHF
    User=AB98765
    
  2. or download this
    my AppID = $LED.cfg->param( $pillar . "_lcd.AppID);
    
    ...
    LED.cfg = configuration file where all server AppID and user names are
    + stored
    param = calling the AppID from LED.cfg using _lcd syntax and assign to
    + $AppID
    pillar = searches the server if belongs to development or test or prod
    +uction. if $pillar is development, dev_lcd is connected and AppID und
    +er dev_lcd is assigned to $AppID.
    
  3. or download this
    my $pwd = qx($path/CA.pl);
    my $pwd = qx("$path/CA.pl");
    my $pwd = system($path/CA.pl);
    my $pwd = system('$path/CA.pl');
    my $pwd = system('usr/local/bin/perl -w $path/CA.pl');