Hi everyone, It's been a little while since I have posted here. last time I posted I iquired about html templating. It's hard to contribute considering I don't...
Hi, i am new to perl. I got a problem. I am writing a script to create a directory whose name will be generated in the script. for example one of the directory...
... Since you haven't provided any code it is impossible to help you. Instead of using the external 'mkdir' command (you show backticks above) use the internal...
Hello Sherry: Try to escape the .3c like \.3c Ezra...
Ezra Taylor
ezra.taylor@...
Oct 4, 2005 8:58 am
21909
respected sir, i am unable to download software from that page... i got all notes for perl but i am unable to work with perl so can anyone help for this perl...
... The line: print `mkdir C:/perl/$dirname` mixes two nomenclatures, MS DOS and UNIX. 'C:' is MS DOS and '/perl/' is UNIX. Try: mkdir "C:/perl/$dirname"; You...
... I can only assume you're talking about downloading Perl from either http://www.perl.com/ or http://www.activestate.com/. Try again. Those are the places...
Forum communication is much easier than usergroups, so I've started a new forum not to long ago and invite all of you to join: www.wizardsolutionsusa.com...
Hi, thanks for the reply. But the problem is the directory name is computed in the script. It changes every time. I am extracting the directory name from a log...
... csheppard91> Forum communication is much easier than usergroups, so csheppard91> I've started a new forum not to long ago and invite all csheppard91> of...
... Are you running under UNIX or MS DOS? Under UNIX the only character that needs be escaped is '/'. MS DOS on the other hand has many special characters,...
Hi, I am interested in joining this forum. Could please send me the link of the same? Thanks, Regards, Prasanna Goupal csheppard91 <csheppard91@...>...
... computed ... directory name ... that ... better to ... Shawn - that substitution is a bit drastic. It will convert spaces to underscores and spaces are...
... Prasanna> I am interested in joining this forum. Prasanna> Could please send me the link of the same? Given that the URL is *in* the message, this does not...
... Actually that is not quite correct, there are many characters that need escaping e.g. <spaces>, ',",\,| to name a few. It would be better if you explain...
... That depends on whether you are doing in Perl or in a shell. In Perl, only '/' and '\' (I missed this one) need be escaped by placing a backslash in front...
Allo! I have numerous "Premature end of script headers:" for perl script. Usually, I don't have problem with the same script, but sometime, the script abort...
... What does this script do? Does it connect to a database? Is the database different (different version? larger?) on this domain? What's the code look like? ...
Paul Archer
tigger@...
Oct 6, 2005 9:29 pm
21923
Allo! ... One of the script is a simple meter working with plain ascii files. The file a relatively small, under 10k. Other script are working with bigger...
Allo! I received the following mesage from the support: The resource limits are the the following: RLimitMEM 157286400 157286400 RLimitCPU 60 60 The server...
... Gilles> Allo! Gilles> I have numerous "Premature end of script headers:" Gilles> for perl script. Gilles> Usually, I don't have problem with the same...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the perl-beginner group. File :...
perl-beginner@yahoogr...
Oct 7, 2005 2:51 pm
21927
Allo! ... It's seem to be a problem with the ressource available at the server. ... Is this limit is at the site, ID or server level? Because I have the same...
Hello All, I suppose this is a simple problem, however, I'm not able to find the right incantation to make this work Code: #!/usr/bin/perl sub try; $var1 =...
... Prototypes for subroutines are not recommended unless you want to do something tricky like: sub try ($\@); # The second argument *must* be an array! ... ...
... Always use strict and warnings. Always! "Theres" is a contraction for "there is" and is spelled "there's". The qw() operator does not need commas to...
Hello I have a pretty simple problem ex: @a=qw( 1 2 3 4 5 6 7 ); $b=5; now i just want to check if the value of $b i.e 5 exists in the array @a or not Q 1) is...
hi all, how can i get the lines unique in file1 from two files file1 and file2 using comm function -- Best Regards, Srinivas Reddy...... [Non-text portions of...