Perl

Moderators: Jonathan
Number of threads: 1259
Number of posts: 3644

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Are perl variables visible in Shell? Posted by Prakash_Radha on 9 Feb 2004 at 6:15 AM
hi, i have to use perl variables for executing a unix command inside a perl script.

Let me give an example:

#!/usr/bin/perl

$var="/space/https-emma13/bin";
`cd $var`;

Here what is happening is var is taken as a literal rather than a variable.

I'm aware of the chdir command in Perl. Just to give an example i'm using this cd command.

What i want to know is how can we make perl variables be visible while executing unix(shell) commands.

Thanks.
prakash.
Report
Re: Are perl variables visible in Shell? Posted by Jonathan on 9 Feb 2004 at 7:24 AM
: hi, i have to use perl variables for executing a unix command inside a perl script.
:
: Let me give an example:
:
: #!/usr/bin/perl
:
: $var="/space/https-emma13/bin";
: `cd $var`;
:
: Here what is happening is var is taken as a literal rather than a variable.
:
: I'm aware of the chdir command in Perl. Just to give an example i'm using this cd command.
:
: What i want to know is how can we make perl variables be visible while executing unix(shell) commands.
:
Hmmm...well, variables do get interpolated. See my example:-

[jonathan@trinity jonathan]$ cat example.pl
$!/usr/bin/perl
$message = "hello";
$return = `echo $message`;
print $return;
[jonathan@trinity jonathan]$ chmod +x example.pl
[jonathan@trinity jonathan]$ ./example.pl
hello
[jonathan@trinity jonathan]$


Jonathan

###
for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&&
(tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;
/(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.