Do not use on any
shared computer
September 7, 2008 03:57am pdt

635 organizations, including eBay, Ericsson and Lockheed Martin, now work smarter with Corporate Accounts. Save up to 42%

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Time Tested Perl Solutions: 401 - 425 of 1245
 
Hello, I'm trying to make a SNMP walking script that will save the results to a database. Here is a example of what i'm trying to do... The Access Point i'm trying to poll using SNMP use...
Hi - For linux based perl I have scripts that declare the telnet module as - #!/usr/local/bin/perl use Net::Telnet; How do I do this in an windows environment.  Just really learni...
I get this error when I try to use the oracle DBD module in perl.  What can I do to resovle this error.  I am using the perl that is packaged with Red Hat Enterprise 4 Update 2.   install...
I'd like to resize images proportionally. so i want it to grab the width and hight and for example shrink the width to 150 and the height to shrink proportionally to the width. This is all...
Greetings, I have a pipe delimited flat file database and I need a little guidance in searching and modifying with a perl routine. The database has many lines constructed as below s...
Is it possible for perl open Excel work book and save it in csv format let say my work book is abcd.xls and I want to save it as abcd.csv format
After using the Net::FTP module to copy files locally, I'd like to set the time and date of creation/modification to the same as that on the server.  I don't believe there's an option to do so...
Scenario:  I receive 2 files onto a solaris box, i want to extract from them the time and date stamp of the files recieved and using this calculate the most recent. I may also wish to put this...
Hi, I read a 2d array from file, so I have something like:     @my2dArray[5][5]; I can iterate over it, ok. I want to pass it to a sub routine, like:     pass2dArray(my2dArray); ...
Hi experts In Perl/Tk I want to display an image. The code snippet is an exact copy from Perl/Tk FAQ. It works fine. But when I want to use my own image and use the absolute path, e.g. m...
Hi all, I created a perl module for subroutines that I use often like this sub below. sub setVcc {    my ( $vcc )  = @_;    print "=====================================================...
I have two variables "a" and "b" that I will submit to a Perl script for processing, either through a querystring such as http://host/script.pl?a=1&b=2 or through HTML form fields through POST...
Hi Experts, I'm wanting to detect when a visitor downloads a file on my website, so I can do things like: immediately increment counters, etc. My HTML might be something like this (but I c...
I have an array that looks like this: 'Tablespace Name  =  ABC Data Size = 123 Log Size = 456 Free Space = 111 Tablespace Name = DEF Data Size = 456 Log size 123 Used Space = 333 Fr...
Hello: I have read http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_20102970.html but I am receiving an error that the file size is too large. The error message is: cou...
Hi... Im trying to set up IKONBOARD and Im confused about setting my file permissions.  Im using ws_ftp to upload the files and it says to chmod to change the files permissions.  Isnt this ...
Hi,  I have a script that needs to run a system command such as:  system("cqtool submit"); I need that call to have something like :  system("cqtool submit %\n") to simulate a carriage ...
I'm running ActivePerl 5.8.4.810, and I'm trying install Math::Pari (the ultimate purpose is to use Net::SFTP, which requires Net::SSH::Perl, which requires Math::Pari).  Whenever I try to use...
I would like to remove slashes from an array as it causes an error in the rest of the printing of a doc (combination of PERL and PostScript). Or would you recommend escaping it with a backs...
I have a directory of logfiles which are named by a timestamp. I want to extract the timestamp from the string variable $logfile, so that the resulting format reads like this "200807140144". I...
Hi experts: Is there an easy way to break out of commandline output without waiting for input? Like a listener or something. This is on a linux system. The top command can do what I want to...
I am searching through a file line by line: foreach $line (<FILE>) {     if($line eq "something special")    {       here I want to print out the last 10 lines before $line    } } ...
I want to have a Perl-interpreter (windows-based) on my USB flash device because I use about a dozen different computers and I can't install it on them all.  Is there any way to get it to work...
Dear Expert, I need to write a perl script running WINDOWS XP. The program needs to send some command to a device which is connected to the PC using USB port. One approache is to send the t...
Hi, We are tasked to create a PERL script that uses and calls a specific CONFIG file written in SH/KSH. The CONFIG FILE declares environment variable and has functions that needed to be exec...