Hi, I'm trying to use perl on solaris to copy a file which may have spaces in it. I can't even get it to work without spaces. On the command line, this works:...
Hi, I'd like to ftp the newest file in a directory from a unix box to our windows network. To do this, I plan to use the following to find the newest file: ...
Hi, I'm a beginner in Perl. I'm self studying and I am trying out a simple program. Basically, I want to do a program which will automate nslookup and ping,...
At the moment, I am trying to get a handle in writing associative HASH array. I think I got that part of my script correct, however I have added a part in my...
Does anyone know how I can create a pl script that will look at the html on a web page, specifically the <title>New Page1</title> portion of a web page? I need...
Hi , I'm starting Perl , just a fully fresh beginner ; And I use Perl command line in windows ; when I typed the command :¡¡perl -e 'print "Hello,world\n"39; ...
Hi, I am a beginner in perl and I have a query regarding pattern matching. I came across a line in perl where it was written $variable =~ s-/\Z--; and as the...
Hi, I want a simple perl script which takes my file results.txt and uploads it in the site http://my_company_project_site/results.txt How can i do it? thanks...
Hi all, I am supposed to write a perl code that uses SFTP to transfer one file from my server to another server. The arguments are supposed to be read from a...
Hi, I am trying to move array elements (populated from the <STDIN>) into a hash as pairs [i] and [i + 1] and then print them out using the code below. If I...
Hi, I'm trying to use the Padre IDE for perl. From what I have read I guess it is not really a bonified IDE. However, I have read that one can at least use it...
I've boiled a problem in a script I'm writing down to the following code: #!/usr/bin/perl my @array = {"string a - ", "string b - "}; @array .= my_sub(); print...
Hi I'm trying to search and replace text in one file and save it to a new file. I tried the code below but it seems that I am just simply copying the INFILE...
Hi there, okay I have a Parallel::ForkManager question. I am just starting off using it. I am getting errors and not sure completely how to mitigate them. I...
All: I am having problems attempting to change the name of a file from -- filename (nnn) date to filename date (nnn). I am attempting to change the files using...
My upload script which uses upload hook works really nice. After the upload ends it writes some debug stuff to log file and sends some info to other host. When...
I am using Archive Zip to compress files in a Windows environment. If I open the files through Windows, it shows nothing. I can open the file with 7-zip and...
Hi to all: I´m beginins with Apache Web Server and Perl. I trying install both in Windows Server 2008 to install W3C Validator in Local. The problem: PPM GUI...
Hi experts! I wanted to learn using perl regular expressions from bottom to top with examples. Please advice me with docs/site if any . Thanks much in advance....
Hi, I am really new (or, actually, it's been awhile) with Perl, and am having problems getting a 'switch39; working with Perl 5.8.8. Basically, I'm reading in a...
Hi All ! Could you please share me some example script to start my learning on perl scripting. MOre on basic perl scripting. Thanks, Ganesh B [Non-text...
Hi, I'm just wondering why output is not being written to output.txt rather it prints on the screen. Can someone look at it? I appreciate it. #!/usr/bin/perl...
The problem I was having with my perl script has been resolved. My domain hosting company tweaked something at their end. I appreciate having found your...
I understand this is an email list for beginning perl programmers. I'm not a programmer. I do web design and lots of volunteer work with the world's largest...
Hi experts, Have you ever experienced Out of memory problem while using HTML::TableExtract. I'm having little large html files, still i didn't expect this to...
I am using the backtick operator to capture output. However, I need to pass a scalar variable into the backtick section, instead of a literal command. Is that...
I am new to the group, and I have a problem in getting Perl's Net::FTP module to work properly under a copy of Cygwin I have installed in Windows 7 (64-bit). I...
Hi all, The following perl program, for sorting files in a directory, without using any OS specific command, ordered by modified timestamp is not working. ...