Search Results

Search: Posts Made By: suvenduperl
4,080
Posted By suvenduperl
Hello Guys, Thanks for your nice...
Hello Guys,

Thanks for your nice suggestion.......
Its working out ......
superbbbbbbbbbbbbbb.....................
2,120
Posted By suvenduperl
System command
Hello All,

I am trying to run this system command from batch file.....

my @filename = ( 'cleartool', 'find', '. -type', 'f', '-ver','lbtype_sub(baseline name)', '-print' );
system(@filename);...
5,746
Posted By suvenduperl
Now i am able to create the executable of this...
Now i am able to create the executable of this script....
But i am unable to get anyoutput....
after executing the exe
where may be the problem
4,080
Posted By suvenduperl
SOLVED: Text file compare using perl
I have two text file....
One text file contain in this format......
keyvalue.txt \SUM\SUM_cam.c
\SUM\SUM_cam.h
\SUM\SUM_command.c
\SUM\SUM_command.h
\SUM\SUM_dab.c
\SUM\SUM_dmb.c ...
5,746
Posted By suvenduperl
It is throwing this error.......... Can't...
It is throwing this error..........

Can't locate Win32/OLE.pm in @INC (@INC contains: /usr/lib/perl5/5.8.0/cygwin-mu
lti-64int /usr/lib/perl5/5.8.0...
5,746
Posted By suvenduperl
Executing WIN32OLE program
Hello,

Please help me out to execute this perl program:
#!/usr/bin/perl -w

use strict;
use Win32::OLE qw(in with);
use Win32::OLE::Const 'Microsoft Excel';

$Win32::OLE::Warn = 3; ...
5,345
Posted By suvenduperl
Hello All, my $Book =...
Hello All,

my $Book = $Excel->Workbooks->Open("u:/file_list.xls");
my $Book1 = $Excel->Workbooks->Open("u:/output.xls");

my $Sheet = $Book->Worksheets(1);
my $Sheet1 = $Book1->Worksheets(1);...
3,702
Posted By suvenduperl
Hello kumaran, I have a better idea now........
Hello kumaran,

I have a better idea now.....
3 column in one file_list.xls :

first column : if the file will differ from the comparable baseline then we will put a (*) mark

second...
5,345
Posted By suvenduperl
Perl script to extract second column from a xls
Can Anyone tell me how to extract the second column of a xls sheet
And compare the content of each row of the column with a .h file.

xls sheet is having only one spreadsheet.
1,278
Posted By suvenduperl
I want a command which will cut the strings after...
I want a command which will cut the strings after c:\ till @
and from main to the end.

This command is ok.....
But i cant use the word like this:
...
1,278
Posted By suvenduperl
cut all the names with .c and .h
Hello All,

I have one file which contains the line like this:

c:\old\DIR_source\NEW\new_icon.c@@\main\CHANGE\600_int\1
C:\old\DIR_source\NEW\COM\new_COM.c@@\main\CHANGE\a600_int\1

I want to...
2,054
Posted By suvenduperl
Thanks..... I got a good information how to...
Thanks.....
I got a good information how to deal with this meta character.....

one more question:

if (m/^([0-3]\d-[a-z][a-z][a-z]-\d\d\.\d\d:\d\d:\d\d)\s+(\S+)\s+\S+\s+"(\S+)"/oi)

Here...
2,054
Posted By suvenduperl
Perl Meta character understanding
Hello All,

I have some expression:

if (/^([12]\d\d\d[01]\d[0-3]\d\.\d\d\d\d\d\d)\s+(.+)$/)
{
warn "$argv0(" . __LINE__ . "): rbl2ts{$2} == '$rbl2ts{$2}' \$1==$1\n" if ($debug);
...
3,702
Posted By suvenduperl
In .csv file it looks like this: (In Microsfot...
In .csv file it looks like this: (In Microsfot word 2003)

;DIR_source\TEA\TEA_cam.c\.;\main\base2ucm_source\600_int\1
;DIR_source\TEA\TEA_make.c;\main\base2ucm_source\600_int\2...
3,702
Posted By suvenduperl
Hello All, My LOG.txt looks like this: ...
Hello All,

My LOG.txt looks like this:

DIFFBL INT_1029_Rel6.0.0.90.2163@\DIR_PVOB STD_6.0.0.50_UCM_FOUNDATION_BL.480@\DIR_PVOB (COMPONENT TEA)
Comparing the following:
...
3,105
Posted By suvenduperl
It is working.... But I want the output to...
It is working....
But I want the output to display in a .csv file with the path of all the file names and whether it is changed or not in the new baseline.....

The output is not in a good shape...
3,702
Posted By suvenduperl
In log.txt I have ...
In log.txt I have

M:\shah_view\DIR_source\TEA\TEA_CabinSDmonitoring.c@@\main\base2ucm_source\main\1
M:\shah_view\DIR_source\TEA\TEA_CanBusLine.c@@\main\base2ucm_source\main\1
...
2,580
Posted By suvenduperl
Script to map to .csv file
Hello Guys,

I want to write a script which will search for all the *.c,*.h,*.txt in the file.
The result will be again search in a .csv file.
If that .c file or .h or .txt is existing in the...
3,702
Posted By suvenduperl
Hello Kumar, You are correct.... Your...
Hello Kumar,

You are correct....
Your understanding is right......
Will you please help me out to write the script....
3,702
Posted By suvenduperl
Hello Kumar, Thanks for your reply.... But...
Hello Kumar,

Thanks for your reply....
But I did not get..
i am expecting some script which will check for the .c,.h,.txt in the log.txt file and then according to that update in the .csv...
3,702
Posted By suvenduperl
Script for updating a .csv file
Hello guys,

I have one .csv file with all the file names(.c,.h,.sm,.txt etc).....
Now i have compared two baseline in UCM and got a report in .txt file,which looks like this......


DIFFBL...
3,105
Posted By suvenduperl
Perl Script to compare between two baseline in UCM
Hello guys,

I have written a script which will differentiate between two baseline in UCM:
The two baseline is passed as an argument from command line.
Now i can see the output in a .txt...
1,231
Posted By suvenduperl
Value of tmpb array
Hello Guys,

I have one function:

I am calling it as like this:

my %global_port2lanid = ();
build_port_map (\%global_port2lanid);

sub build_port_map
{
my ( $ret) = @_;
my (@tmpa,...
2,833
Posted By suvenduperl
Perl variable declaration
what is the meaning of this particular line of code in perl.

my %global_port2lanid = ();
2,838
Posted By suvenduperl
but ARGV[0] contains one string ....... how to...
but ARGV[0] contains one string .......
how to do this..........
can i pass string directly
Showing results 1 to 25 of 35

 
All times are GMT -4. The time now is 01:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy