导航:首页 > 编程系统 > linux运行prel脚本

linux运行prel脚本

发布时间:2024-01-02 16:35:34

『壹』 perl脚本中怎么样执行linux命令

Linux下perl文件的执行
#! /usr/bin/perl
第一个“#”表示是这一行是注释
第二个“!”表示这一行不是普通注专释,而是解释器路径属的声明行
后面的“/usr/bin/perl”是perl解释器的安装路径,也有可能是:“/usr/local/bin/perl”,如果那个不行,就换这个。
这样修改后,文件就是这个模样:
#!/usr/bin/perl
#test.pl
print "test message! \n";
然后,给文件加上可执行的属性:
$ chmod 755 test.pl 或者 $ chmod +x test.pl
这两个命令用哪一个都可以。

现在执行吧: $ ./test.pl

『贰』 linux中怎样用命令运行.pl文本可执行文件

以ubuntu系统为例:

1,首先去运行perl-v命令查看您的系统上面是否安装了perl工具,如果已安装的话,会输出版本号,如果没有安装,则安装perl。

sudo apt-get install perl

(2)linux运行prel脚本扩展阅读

Perl,一种功能丰富的计算机程序语言,运行在超过100种计算机平台上,适用广泛,从大型机到便携设备,从快速原型创建到大规模可扩展开发。

Perl借取了C、sed、awk、shell脚本语言以及很多其他程序语言的特性,其中最重要的特性是它内部集成了正则表达式的功能,以及巨大的第三方代码库CPAN。简而言之,Perl像C一样强大,像awk、sed等脚本描述语言一样方便,被Perl语言爱好者称之为“一种拥有各种语言功能的梦幻脚本语言”、“Unix中的王牌工具”。

Perl一般被称为“实用报表提取语言”(),你也可能看到“perl”,所有的字母都是小写的。一般,“Perl”,有大写的P,是指语言本身,而“perl”,小写的p,是指程序运行的解释器。

『叁』 如何在Linux下安装Perl 5.0

linux 和 perl 都属于自由软件,将二者结合真是妙不可言。
遵循以下步骤一般就可安装好 perl ,perl 就能在 linux 下欢唱。

1。取得最新版本的 perl,当前版本为 5.6.0,即 stable.tar.gz。

2。解文件包:
gunzip stable.tar.gz
tar xvf stable.tar
得到目录 perl-5.6.0

3。在目录 perl-5.6.0 下安装 perl:
rm -f config.sh Policy.sh
sh Configure -de
make
make test
make install
config.sh Policy.sh 为以前安装时的配置文件,新安装或升级安装时
需要将其删除。
sh Configure -de 安装使用默认配置,一般而言将会 ok 。
安装完成后 perl 所在目录为 /usr/local/lib/perl5, perl 执行文件
在 /usr/local/bin 中。

4。关于 .html 文件
安装 perl 时不能自动安装 .html 文件, 在 perl-5.6.0 目录中有一
个installhtml 文件, 执行 perl installhtml --help 可得到使用帮助,使用
installhtml可将 .pod 及 .pm 文件编译得到相应的 .html 文件文件, 它的具
体使用请自己看。
下面是我所写的一个具有类似功能的程序。

simple_find("5.6.0");# 含 .pm 文件的源目录
use Pod::Html;
sub simple_find{
$sourth="/usr/local/lib/perl5/5.6.0html/"; #含 .html的目标目录
my ($input)=@_;
my $file;
$ddir=$sourth.$input;
$cont=`file $ddir`;
if ($cont !~/$ddir\:\sdirectory/){
`mkdir $ddir`;
}
opendir(md,$input);
my @file=readdir(md);
closedir(md);

@pfile= grep(m/\.pm/,@file);
my @dfile= grep(!m/\.pm/,@file);
@dfile=grep(!m/^\./,@dfile);

foreach $pfile(@pfile){
$pfile=~/\.pm/;
$dfile=$`;
$sfile=$input."/".$pfile;
$dfile=$sourth.$input."/".$dfile."\.html";
pod2html(
"--infile=$sfile",
"--outfile=$dfile");
}
foreach $file(@dfile){
$vale=$input."/".$file;
$cont=`file $vale`;
if ($cont=~/$vale\:\sdirectory/){
simple_find($vale);
}
}
}
使用以上程序得到一个与源目录结构一致的目标目录,包含相应的. html文
件。
注: 使用以上两种方法都会产生不能转化某行类错误,其实它无关大
局,可以忽略。

5。模块安装
gunzip Mole.tar.gz
tar xvf Moudle.tar
转到相应目录
perl Makefile.PL
make
make test
make install
安装完成后模块在 /usr/local/lib/perl5/site_perl 目录中, . html
文件不能自动安装,需使用前面介绍方法进行安装。

『肆』 linux 如何执行pl脚本

给pl脚本授权,+x
切换到脚本目录下,然后执行 ./xxx.pl
这样就可以了。

『伍』 Linux (GNU/Linux)下如何执行perl程序

1.安装
yum -y install gcc gcc-c++ make automake autoconf libtool perl

2.测试页
vi test.perl
#!版/usr/local/bin/perl
print "HellonWorld!\n";

3.运行权
perl test.perl

『陆』 怎么知道Linux/Unix下没有安装perl运行环境

连到Unix系统后,输入命令 which perl ,然后回车。
如果装了perl,就能知道在什么路径下安装的,如果显示找不到,就没装。
已经安装:

[host@host]~% which perl
/usr/bin/perl
[host@host]~%

未安装:
[host@host]~% which perl
perl not found
[host@host]~%

显示版本:
[host@host]~% perl -v
This is perl, v5.8.8 built for i386-linux-thread-multi
Copyright 1987-2006, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl". If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.
[host@host]~%

『柒』 linux下怎么运行perl程序

在linux下“改行code”为单字节,在windows下“改行code”为双字节从linux拷贝文件到windows的时候,有时windows会对文件(perl源文回件)进行改行字符的答变换,此时,如果再将该文件拷贝回linux下时,文件即无法识别改行符,就出现无法运行的问题了。

阅读全文

与linux运行prel脚本相关的资料

热点内容
什么软件打文件 浏览:53
数据库无数据变成0 浏览:899
名企笔试如何刷编程题 浏览:49
js跳到页面某地 浏览:550
jsp展示clob字段 浏览:779
nyx在网络上是什么意思 浏览:145
乐播农业app是什么 浏览:530
编程框架如何开发 浏览:136
金庸群侠传3修改代码 浏览:712
检察院的文件类别有哪些 浏览:793
怎么把九游残留数据删除 浏览:828
有什么女生主动聊天的app 浏览:436
有哪些可以督促自己的app 浏览:244
用USB传输视频文件夹显示为空 浏览:710
恢复文件软件免费版手机 浏览:648
lg怎么隐藏文件 浏览:836
苹果免费读书app推荐 浏览:497
刘骏微信 浏览:113
书旗旧版本80 浏览:467
教编程考什么证 浏览:990

友情链接