Hello,
How do I get Perl to recognize double quotes (") as an input argument? For example:
perl.exe invoke.pl TEST xmlns:ns1="http://www.example.org"
and I need the 2nd argument to ...
Hi,
There is a file in a directory, containing lines which start with a unique identifier. Example : FF3M6TC02TT656 AGCGAC-GCTATGAT
What I need the script to do is that when a user suppl...
Hi everyone, hope you are all well and can help.
Guys im having a problem trying to grab the value from a querystring in a cgi perl script.
In another page, I can grab the value as follows...
Hi,
I'm coding in perl, and I've used CGI::EncryptForm to store encrypted information in cookies.
Now I'd like to take a small hash, maybe three key/value pairs, and encrypt it so the en...
i have to parsing a log file in this format
19/8/1008 12:30:13 211411 23520128934 GEST_TK_CRM_WHOLESALE
19/8/1008 12:30:15 212806 23500033001 GEST_TK_CRM_WHOLESALE
19/8/...
Hi,
I posted a question on here a few days ago and I was helped out by someone that showed me how to put a piece of perl script together to strip out xml tags, I have just come back from ho...
Hi,
I have two files
file1 and file2
file1 contains
----------------------------------------------------------------------------------------
else if (Headers[i].indexOf(strAverepQu...
Hi guys hope you are all well and can help :>)
One of you kind gurus has helped me with a perl script which works great.
Id just like to modify it further.
Here is the script as it curr...
I have parsed a log file into the following format:
Unit-004 (25368) # ON 09-08 10:26:15 # OFF 09-08 10:37:35
Unit-009 (11236) # ON 09-08 17:42:36 # OFF 09-08 18:02:17 ...
I have two scripts from previous EE solutions where I looking for "sep" records only and then in the second script I'm looking for the smallest number in the fourth field:
#!/opt/perl/bin...
I know this should be simple and have searched and tested for hours. I am executing a loop as part of the loop I want to rename a file, so the file does not get used again (I have this script...
I've the files in a my /home/work directroy as below
abc_123.txt
xyz_789.txt
sss_333.txt
hhh_999.txt
relfiles.txt
dummfiles.txt
I would like to loop thru the dircotry to filter only...
Hi All
I have a script located in: /usr/local/etc/httpd/cgi-bin/Administrative/Library/Delete.pl
I'm trying to delete the entire folder at: /usr/local/etc/httpd/cgi-bin/Cart/Data/Account...
HI,
I have used SOAP::Lite in the past to make a trivial call from perl, but now I need to send much more information in with the SOAP request, and I can't figure it out.
I'm planning to u...
Hey, where do I find info on entering data from a flat file database into table cells? What is it called and how could I read up on it.
I am a former MCSE x2 and went "the dark side", I am a linux/solaris admin.
I like perl except it is not all that readable months after someone wrote the code.
I want to do unix script...
We have got a project where we need to clone around 600 applications of different technologies like JAVA,MAINFRAMES,ASP.Net, and PERL. Currently we are unable to find the approaches for clonin...
I am trying to find a good way to detect file changes -- basically for syncing .zip files over a really poor / low bandwidth FTP link. So, I have one server that generates hundreds of .zip fi...
Hello,
I'm writing a class that has a method to validate whether or not a string is a valid Hexadecimal color value.
The function below is how far I've gotten, it successfully validates a ...
Hi -
I have a line of code in a PERL cgi script as follows -
if($first_char == '\*')
When I run the script it generates the following error -
Argument "*" isn't numeric in numeric e...
Observe the output of the code below that the file path has the file name before the directory!
the code returns time in
Sat Aug 30 00:32:47 2008 format
using win32::eventlog hash from
$evt->Read(EVENTLOG_FORWARDS_READ|EVENTLOG_SEEK_READ,$oldest+$start,$evtHashRef)
could y...
I need to get the system date in the following format and assign it to a string so it can be inserted to a XML file.
Format needed below
Sunday, September 28, 2008
I have an xml-file that consists of a nested hierarchy of tags. I'm new to xml so I'm looking for a hint as to what xml-module I should use here. I've installed TWIG, PARSER, DOM etc but have...
Hello i have this function
sub loginPrompt()
{
login($id, $pass);
}
loginPrompt();
sub login($$)
{
$browser = LWP::UserAgent->new(agent =>'Mozilla/5.0 (Windows; U; Windows NT...