Re: files checksum perl program help

2012-01-05 Thread ram ram
Re: files checksum perl program help On 1/5/12 Thu  Jan 5, 2012  11:01 AM, "ram ram" 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 installa

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" 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 libraries. > I h

Re: files checksum perl program help

2012-01-05 Thread ram ram
server1. I am not sure which protocol suits best. right now I am considering NFS. Your help greatly appreciated. Regards, Ramp From: Jim Gibson To: "beginners@perl.org" Sent: Wednesday, January 4, 2012 3:54 PM Subject: Re: files checksum perl program hel

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" 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 in these 2

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 hel

Re: Executable perl program help!!

2003-08-20 Thread Rick Clary
6 AM Subject: RE: Executable perl 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

Re: Executable perl program help!!

2003-08-20 Thread Rich Parker
ob 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 the other day, they have one that can

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 o

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

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. Yo

Re: Executable perl program help!!

2003-08-20 Thread Rich Parker
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. Thanks. Ramprasad A Padma

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 LDOPTS=`per

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: 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

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 forma

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=){ > chomp $line; > @fields=split "\t",$line; > printf sortcode > "\n%6.6s%8.8s%3.3s%27.27s%20.20s%35.35s%35.35s%10.10

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) >

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 cert

Re: PERL PROGRAM HELP!

2001-06-20 Thread Me
> 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 $ARGV[0]",$!; > open sortcode,">$ARGV[1]"

RE: PERL PROGRAM HELP!

2001-06-20 Thread Govinderjit Dhinsa
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 $ARGV[0]",$!; open sortcode,">$ARGV[1]"; while($line=){