perladdict has asked for the wisdom of the Perl Monks concerning the following question:
Here conffile.txt is the input for the script the format of this file is as below#!/usr/bin/perl $arg=$ARGV[0]; &navigate; &asd; sub navigate { @vobtag=`cut -d ";" -f1 conffile.txt`; print "@vobtag\n"; } sub asd { $arg=$ARGV[0]; $path="/remote/scm/builds/$arg/Formal"; chdir($path); @array=`ls `; print @array; }
First field from this file is an argument to the script/vobs/ivr;IR:IVR;IVR;Interactive Response /v_dialer;APC:Dialer;APC;Avaya Proactive Contact /v_dialermidtier;APC:Supervisor;APC;Avaya Proactive Contact /v_dialerclient;APC:Agent;APC;Avaya Proactive Contact /vob1;SBL;Siebel;Siebel
bash>cd v_dialerbt coreservices cs_licgen HCC IVRD ivr_vw_win v_dialer v_dialermidtier vob1 IVRD
Can any one help me out to navigate up to the log file of the relese directory.../vobs/ivr /v_dialer /v_dialermidtier /v_dialerclient /vob1 4.0.0.0.28 4.0.0.0.29 4.0.0.0.30
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to start automation to open the last three logfiles to get build information
by toolic (Bishop) on Jul 10, 2007 at 21:20 UTC |