Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
07-02-2007, 12:43 PM
|
#1
|
|
Senior Member
Registered: Jun 2007
Location: E.U., Mountains :-)
Distribution: Debian, Etch, the greatest
Posts: 2,546
Rep:
|
Possible to have perl code into bash script ?
example:
Code:
#/bin/bash
echo "this is bash script"
echo "--"
perl -e "
my perl commands
use Shell qw(cat ps cp);
$passwd = cat('</etc/passwd');
@pslines = ps('-ww'),
cp("/etc/passwd", "/tmp/passwd");
# object oriented
my $sh = Shell->new;
print $sh->ls('-l');
"
|
|
|
|
07-02-2007, 01:17 PM
|
#2
|
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 42,702
|
well you've written a script there, have you tried it? should generally be fine as it's nothing more than a per one liner over a number of lines (apart from that "my perl commands" gubbins, oh and the fact that youre extenral " marks will clash with the internal ones.
|
|
|
|
07-03-2007, 12:35 PM
|
#3
|
|
Senior Member
Registered: Jun 2007
Location: E.U., Mountains :-)
Distribution: Debian, Etch, the greatest
Posts: 2,546
Original Poster
Rep:
|
Quote:
|
Originally Posted by acid_kewpie
well you've written a script there, have you tried it? should generally be fine as it's nothing more than a per one liner over a number of lines (apart from that "my perl commands" gubbins, oh and the fact that youre extenral " marks will clash with the internal ones.
|
I found this EOF... in startfluxbox.
Could this code somehow work ?
Code:
#/bin/sh
echo "This is sh"
echo "this is perl code to begin"
( perl -e << EOF
print "hello" ;
print " This is perl";
my $filename = "tmp.htm";
$contents = `curl http://www.google.com | grep current `;
open(F, $contents ) or die( "can't the file \n" );
$line = <F>;
print $line ;
$line = <F>;
print $line ;
{
print $line ;
}
EOF
)
echo "back to sh"
echo "script finished"
|
|
|
|
07-03-2007, 12:56 PM
|
#4
|
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 42,702
|
you given complete two examples, yet haven't tried either... the second example is part of a fully functional script on your system, pretty likely it works just fine...
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 12:42 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|