Re: files checksum perl program help

2012-01-05 Thread ram ram
checksum perl program help On 1/4/12 Wed  Jan 4, 2012  3:38 PM, ram ram ram_p...@yahoo.com scribbled: Hi ,    Wish you a Very Happy and Wonderful New Year. I am a beginner in perl programming. I request your help to write a perl program that takes 2 different directories on 2 different

Re: files checksum perl program help

2012-01-05 Thread Jim Gibson
On 1/5/12 Thu Jan 5, 2012 11:01 AM, ram ram ram_p...@yahoo.com scribbled: Thank You very much Jim for your immediate response. my requirement is that I have standard installation on server1 which is a master copy. I know the location of the installation directory which contains bunch of

Re: files checksum perl program help

2012-01-05 Thread ram ram
, 2012 11:34 AM Subject: Re: files checksum perl program help On 1/5/12 Thu  Jan 5, 2012  11:01 AM, ram ram ram_p...@yahoo.com scribbled: Thank You very much Jim for your immediate response. my requirement is that I have standard installation on server1 which is a master copy. I know

files checksum perl program help

2012-01-04 Thread ram ram
Hi ,    Wish you a Very Happy and Wonderful New Year. I am a beginner in perl programming. I request your help to write a perl program that takes 2 different directories on 2 different servers and find all the files in these 2 directories have the same files with same checksums. can anybody

Re: files checksum perl program help

2012-01-04 Thread Jim Gibson
On 1/4/12 Wed Jan 4, 2012 3:38 PM, ram ram ram_p...@yahoo.com scribbled: Hi ,    Wish you a Very Happy and Wonderful New Year. I am a beginner in perl programming. I request your help to write a perl program that takes 2 different directories on 2 different servers and find all the files

Executable perl program help!!

2003-08-20 Thread sc00170
How can i generate such a file? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Executable perl program help!!

2003-08-20 Thread Ramprasad A Padmanabhan
[EMAIL PROTECTED] wrote: How can i generate such a file? Million dollar question , No perfect answer. Depends on what OS you are using. Do a google on perl2exe For starters try the O.pm. To convert your perlcode to C and then compile the C code On linux You can compile using export

RE: Executable perl program help!!

2003-08-20 Thread Bob Showalter
Rich Parker wrote: I was at Active State the other day, they have one that can be purchased. I have seen a few others when I did a similar search as mentioned. I haven't seen one for free or one that has a demo for it, I'd love to try one, if anyone sees one, let everyone know about it. You

RE: Executable perl program help!!

2003-08-20 Thread Laurent_Coudeur
Also try http://www.indigostar.com/ Laurent coudeur Bob Showalter [EMAIL PROTECTED] 20/08/2003 16:20 To: 'Rich Parker' [EMAIL PROTECTED], [EMAIL PROTECTED] cc: Subject:RE: Executable perl program help!! Rich Parker wrote: I was at Active State

RE: Executable perl program help!!

2003-08-20 Thread Dan Muey
How can i generate such a file? # vi mysript.pl : #!/usr/bin/perl -w use strict; print hello\n; # ./myscript.pl Bash: Bad command or file name : Permission denied # chmod 755 myscript.pl # ./myscript.pl hello # On unix it has to be executable by the user running it, commonly 755 or on

Re: Executable perl program help!!

2003-08-20 Thread Rich Parker
] 20/08/2003 16:20 To: 'Rich Parker' [EMAIL PROTECTED], [EMAIL PROTECTED] cc: Subject:RE: Executable perl program help!! Rich Parker wrote: I was at Active State the other day, they have one that can be purchased. I have seen a few others when I did a similar

Re: Executable perl program help!!

2003-08-20 Thread Rick Clary
program help!! How can i generate such a file? # vi mysript.pl : #!/usr/bin/perl -w use strict; print hello\n; # ./myscript.pl Bash: Bad command or file name : Permission denied # chmod 755 myscript.pl # ./myscript.pl hello # On unix it has to be executable by the user running it, commonly

RE: PERL PROGRAM HELP!

2001-06-21 Thread Aaron Craig
At 11:35 20.06.2001 +0100, Govinderjit Dhinsa wrote: Iv been givin this program to modify, but I can not astblish what some parts of the program are doing. From printf to } Can any body help please and run through it with me pls! open iscd,$ARGV[0] or die Cannot open

RE: PERL PROGRAM HELP!

2001-06-20 Thread Govinderjit Dhinsa
Hi, I am new to perl and have been chucked in the deep end!!! I have been asked to write a perl script, with a output in report style; Description for script: Read a file, (sorted) take certain data from the file, (problem) put the

Re: PERL PROGRAM HELP!

2001-06-20 Thread Me
Hi, I am new to perl and have been chucked in the deep end!!! I have been asked to write a perl script, with a output in report style; Description for script: Read a file, (sorted) take certain data from the file, (problem) put

RE: PERL PROGRAM HELP!

2001-06-20 Thread Kipp, James
This code is a mess, your better off rewriting it. open iscd,$ARGV[0] or die Cannot open $ARGV[0],$!; open sortcode,$ARGV[1]; while($line=iscd){ chomp $line; @fields=split \t,$line; printf sortcode \n%6.6s%8.8s%3.3s%27.27s%20.20s%35.35s%35.35s%10.10s%1.1s%1.1

Re: PERL PROGRAM HELP!

2001-06-20 Thread Gary Stainburn
Hello there, without some specifics, such as example input and required output there's not a lot we can do here. However, for ideas on how to extract the required data, look at using regex (regular expressions) by doing 'perldoc prelre'. For ideas on formatting the report look at perl