Perl
Perl is a dynamic programming language created by Larry Wall and first released in 1987.
Application
Any
Platform
Any
License
Any
: Hi,
:
: Two answers.
:
: 1) With "use strict;" in force, you cannot do this. But you can,
: within a given block, disable certain features of strict. So if you
: did:
:
: : sub...
: Yes, but would you need an array of arrays to
: capture multiple lines?
Note that in Perl, a string is not considered an array of characters. It's just...well...a string. :-) So it's just an...
$hex_file";
: : : : print $fh $output;
: : : : close $fh;: : : :
: : :
: : : Jonathan, what happens if there output returns more
: : : than one line and each line is segmented? for example...
: : What's the best way to get results from a system command using perl
: : to access any unix/linux shell?
: :
: : Examples:
: : a.) system(qq{$command $args | $output_file});
: :...
$hex_file";
: : : print $fh $output;
: : : close $fh;: : :
: :
: : Jonathan, what happens if there output returns more
: : than one line and each line is segmented? for example say the lines...
$hex_file";
: : print $fh $output;
: : close $fh;: :
:
: Jonathan, what happens if there output returns more
: than one line and each line is segmented? for example say the lines
: are in...
: What's the best way to get results from a system command using perl
: to access any unix/linux shell?
:
: Examples:
: a.) system(qq{$command $args | $output_file});
:...
$hex_file";
: print $fh $output;
: close $fh;:
Jonathan, what happens if there output returns more than one line and each line is segmented? for example say the lines are in the following...
What's the best way to get results from a system command using perl to access any unix/linux shell?
Examples:
a.) system(qq{$command $args | $output_file});
Then read...
Here's the problem:
I need to gather the following information every time a stderror occurrs:
1.) the line in the code it happens on.
2.) what process was called when it happened.
3.) current...
: Is there a way to run the following command in perl and
: not have to type in my alias every time it's called?
:
: example:
: system (qq{scp ${send_file}
: ${user_name}\@${server}...
Is there a way to run the following command in perl and
not have to type in my alias every time it's called?
example:
system (qq{scp ${send_file} ${user_name}\@${server}.${domain_name}:/${path_to...
Hi,
I'm not quite sure what the problem is, but a few pointers...
: # just to test everything got through.
: print "...${valueone} and ${valuetwo}\n";
:
Does this line actually print what...
Hi All,
I'm trying to send param values recieved in a cgi page to a perl
module to process and I can't figure out what's going wrong. :-(
Any help would be greatly appreciated...
Here's...
: I'd love to use netcat on the Win32 server, but I can't figure out
: how to re-write the first part of the command I was using "echo
: "" |" so it works on Win32. :-(
The pipe syntax and echo...
: So Windows will ignore the bash code and only execute the perl code
: just like on linux/unix systems when I use the "-x" arg when I run
: it?
Yup.
: I actually consider windows the dark...
: Hi,
:
: : I'm new to Windows, been on the dark side (unix/linux) for most of
: : my programming life.
: You're odd. Most people consider Windows the dark side. :-)
:
: : Here's my delima,...
Hi,
: I'm new to Windows, been on the dark side (unix/linux) for most of
: my programming life.
You're odd. Most people consider Windows the dark side. :-)
: Here's my delima, I've written...
Hi,
: It basically needs to check if there is new mail in mailbox(A) and
: if there is one then it sends to mailbox(B) short note(mail) that
: i've recive a mail in that mailbox. It sends info...
Hey guys!
I've got small srcipt to make and i don't really know how to do it.
It basically needs to check if there is new mail in mailbox(A) and if there is one then it sends to mailbox(B)...