| Thread | Last Post | Replies |
|
| Understanding split in a while loop | 28 Feb 2005 20:35 GMT | 5 |
Just a quickie. I think the answer is that th while loop is going through the file twice? -------------- Codes that does what I expect, i.e. prints out the 42 lines of my passwd
|
| How get folder size? | 28 Feb 2005 18:12 GMT | 11 |
How could I go about having perl to get the size of a folder? thanks
 Signature To unsubscribe, e-mail: beginners-unsubscribe@perl.org
|
| Verify that a directory exists. | 28 Feb 2005 16:55 GMT | 9 |
I'm a begginer in Perl and other programming languages. I want to verify that a directory exists, but I don't know the way tho do it. Regards.
|
| strange if-else problem | 28 Feb 2005 15:08 GMT | 2 |
Morning all. I have a strange problem with an if-else statement. Both parts of the statement are being executed and I have no idea why, the offending code is this: if($password =~ /\S\S\d\d\S\S/){
|
| www.perldoc.com | 28 Feb 2005 15:06 GMT | 6 |
Is anyone having trouble getting to this domain? I can never get a connection.
 Signature Just getting into the best language ever...
|
| problem with instalaion of DBD::mysql | 28 Feb 2005 14:56 GMT | 1 |
Dear list, i have a problem installing DBD::mysql module. My built is FC3 on a P4 machine. i installed mysql database via Mysql-serever-5.1.10-0.i386.rpm also via
|
| Case-operator | 28 Feb 2005 12:19 GMT | 1 |
Is in the perl operator like C/C++ 'case' ?
 Signature Vladimir D Belousov HiTech solutions for business
|
| Testing question | 28 Feb 2005 01:33 GMT | 3 |
I am trying to wrap my head around testing. What exactly do you test? I do mostly scripts for admin stuff and not modules. My scripts do things like run a program and then email the generated log file to me. Would you test that? What fits the criteria for "it needs a test"?
|
| printing lines from a file | 27 Feb 2005 06:07 GMT | 1 |
Here is some code I am working on: #!/bin/perl -w use strict; my $number_of_args = @ARGV;
|
| Delete an element in an array | 26 Feb 2005 07:11 GMT | 3 |
I want to save names from <STDIN> to an array. Afterwards I want to delete a single name in the array received again from <STDIN>. This is what I have:
|
| Perl error --> Global symbol requires... | 26 Feb 2005 06:14 GMT | 5 |
I'm getting the following error in my code. If I define $i as my $i then everything works fine. What's wrong? # while1.pl use strict ;
|
| Calling Files automatically | 26 Feb 2005 04:46 GMT | 4 |
How can I modify the early part of code below such that I don't have to manually key in the files this way: perl mycode.pl data1P.fa data1R.fa data2P.fa data2R.fa ....etc I.e. just by typing this will do:
|
| calling an invocation argument from @ARGV | 25 Feb 2005 21:51 GMT | 3 |
I'm trying to automate g++ through a Perl script. Here is what I have written so far: #!/bin/perl -w use strict;
|
| Appending in between some file | 25 Feb 2005 21:30 GMT | 2 |
I wanted to append some line in between a text file. So what I tried is with the seek command I tried moving the pointer and then do appeding, but for some reason it was not getting appended. I know there are ways to make this task possible. I am afraid abot the memory ...
|
| pattern matching | 25 Feb 2005 21:21 GMT | 2 |
not quite sure if what I m trying to do is possible, but here is the basic idea: Currently I have a simple program takes a username from a html textbox and checks against a list of values in a notepad document. If the name is found
|