几种linux脚本的简单执行方法

1.hash脚本
文件名:assign

内 容:
#!/bin/sh

cd $1
ls

执行:
[root@db2 ~]# sh helle2.sh /usr
或者[root@db2 ~]#./helle2.sh /usr

输出结果:
bin etc games include lib lib64 libexec local sbin share src tmp

2.perl脚本

首先要安装perl:yum install perl
文件名:hello.pl
内容:
#!/usr/bin/perl
print"Hello World"

执行:[root@db2 ~]# perl hello.pl
或者[root@db2 ~]# ./hello.pl
输出:Hello World

相关文章:http://blog.csdn.net/zzq900503/article/details/12850379

上一篇:myeclipse高版本对应tomcat低版本解决办法


下一篇:javascript 原生常用api 数组方法大全