T
Torch
Hey again all. I have progressed a great deal with the basics of perl.
I have however a question were I do not seem to get the awnser of.
It has to do with appointing a value to a variable. This is the last
part of a program which I am trying to understand
My question:
The value given to the variable $STR is given in between ` signs.
What does this mean?
my $STR = `sqlplus -s $ORASTR >$f <<END
SET NEWPAGE 0
SET SPACE 0
SET PAGESIZE 0
SET LINESIZE 127
SET HEADING OFF
SET FEEDBACK OFF
SET ECHO OFF
SET TAB OFF
SET COLSEP |
$Q
`;
When I try to display the value of $STR I get nothing
I am not really interested in what this variable does, I can probably
find that out myself. I am more interested in de function of the `
signs
Thx alot for all your help people! It really makes a difference!
I have however a question were I do not seem to get the awnser of.
It has to do with appointing a value to a variable. This is the last
part of a program which I am trying to understand
My question:
The value given to the variable $STR is given in between ` signs.
What does this mean?
my $STR = `sqlplus -s $ORASTR >$f <<END
SET NEWPAGE 0
SET SPACE 0
SET PAGESIZE 0
SET LINESIZE 127
SET HEADING OFF
SET FEEDBACK OFF
SET ECHO OFF
SET TAB OFF
SET COLSEP |
$Q
`;
When I try to display the value of $STR I get nothing
I am not really interested in what this variable does, I can probably
find that out myself. I am more interested in de function of the `
signs
Thx alot for all your help people! It really makes a difference!