几种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

原文地址:https://www.cnblogs.com/liuyuanyuanGOGO/p/3464898.html