... Jenda> I wonder what do you teach in that introduction. There's "Perl" - the Jenda> language and "perl" - the executable, but there is no such thing as ...
Hello All, I'm looking for a module that can do the same job as 'cp -r' in Linux. Right now, I'm using "File::Copy" to copy individual files and qx(cp -r...
Emen Zhao
emenzhaowork@...
Dec 3, 2007 9:16 am
25907
... I suggest File::Copy::Recursive as the solution to your problem. -- [Mary said,] "Do whatever he tells you." ~ John 2:5...
Hello! I have been reviewing over several google searches and the use of SSH and SFTP on Windows XP to a Unix box does not look to promising. The Unix...
Fish, David
david.fish@...
Dec 3, 2007 6:07 pm
25909
Hello Everyone! Here is an update I sent to Kamal, just an FYI to give you more information. Thanks, David Fish Senior Systems Analyst Property System...
Fish, David
david.fish@...
Dec 3, 2007 9:04 pm
25910
Hi Guys, I have recently started working with multiple (child ) processes. I have the following code which is not returning any error: Please see below where...
I could get this working by removing the 'or' in sysopen(FILE, "$data_loc/$file", O_RDWR) or die "Can't open $data_loc/$file: $!\nFAIL \n", exit (1); and...
Real job at home for IT (programmer, webmaster, webdesign, webpromotion, translator, copywriting and etc). 1000 more project can you follow but you must have...
I'm not sure if this is redundant but I can tell you that I've had lots of luck using WinSCP. It can use the secure FTP protocol and uses Putty as the SSH. ...
Hello, I am a newbie to perl. I am getting data from an arg with multiple blocks of data. for example, a variable named, $abendstatus, will have a value of ...
... cside30> Hello, cside30> I am a newbie to perl. cside30> I am getting data from an arg with multiple blocks of data. cside30> for example, a variable...
WOW... Thanks... Can you recommend a book or an online book where I can educate myself more on that command?? I was looking online on Perl.org is that a good ...
... cside30> Can you recommend a book or an online book where I can educate myself cside30> more on that command?? I was looking online on Perl.org is that a...
I'm looking for a perl regex that matches all strings except those beginning with a particular substring. Let's suppose the substring is "/debian", then...
Klaas Gadeyne
klaas.gadeyne@...
Dec 13, 2007 4:56 pm
25919
... Klaas> Let's suppose the substring is "/debian", then following strings won't match: Klaas> /debian/dists/etch/Release Klaas> /debian/db/packages.db Klaas>...
... Something like this will work: if ($string =~ m{^(?!/debian)}) { print "[$string] does not begin with '/debian'\n"; } ... The problem is that your regex...
I am new to this language and I am following an example in a book $pmt=<STDIN> and it doesn't seem to stop to allow me to input an amount from the keyboard Any...
Hello! I have to copy some images on my Windows system with Perl. I use the following script to do so: $in_ = "original.gif" ; open (IN,"$in_") ; @fichier=<IN>...
use File::Copy or try to binmode(FILE_HANDLE) This function puts FILE_HANDLE into a binary mode. http://www.schogini.com/articles/File-Functions.html ... -- If...
... [...] ... Well, AFAIK mod_alias (which provides RedirectMatch) doesn't, but mod_rewrite does. I'm not sure if this is the best possible option, but ...
if you want, you can download from http:\\students.sabanciuniv.edu\~borauyar\perl\perlbooks.zip ... [Non-text portions of this message have been removed]...
... Bora> if you want, you can download from Bora> http:\\students.sabanciuniv.edu\~borauyar [REDACTED] First, that's not a real URL. Your slashes are leaning...
Hello All, With a growing demand for Perl automation ,we are pleased to announce a new weekend batch of "Perl Automation" for students & Professionals. Course...
Real job at home for IT (programmer, webmaster, webdesigner, webpromotion,graphic design, translator, copywriter and etc). Much project can you follow but you...
I'm trying to install Perl SSH on a HP 32 bit system with OS B.11.11 U 9000/800. When I do a "make test" after compiling I get following error. # make test rm...
... Hash: SHA1 ... There's your trouble. The "qw" operator is interpreting those variable names as strings which is not what I understand you wanting to do. ...
Thank you that helped but I also had to add a index for the sub array like. print "$arrList->[$x][1]\n"; I can live with this thanks again. ... Don Dukelow HP...
Can anyone (hopefully) tell me why this doesn't work? All it *should* do is output the contents of the CRL. ... #!/usr/bin/perl -w use Convert::ASN1; use...