8个实用的Shell脚本分享

几个Shell脚本的例子,觉得还不错。

【例子:001】判断输入为数字,字符或其他

代码如下:

#!/bin/bash 
read -p "Enter a number or string here:" input 
 
case $input in 
   [0-9]) echo -e "Good job, Your input is a numberic! \n" ;; 
[a-zA-Z]) echo -e "Good job, Your input is a character! \n" ;; 
       *) echo -e "Your input is wrong, input again!   \n"  ;; 
esac

【例子:002】求平均数

代码如下:

#!/bin/bash 
 
# Calculate the average of a series of numbers. 
 
SCORE="0" 
AVERAGE="0" 
SUM="0" 
NUM="0" 
 
while true; do 
 
  echo -n "Enter your score [0-100%] ('q' for quit): "; read SCORE; 
 
  if (("$SCORE" < "0"))  || (("$SCORE" > "100")); then 
    echo "Be serious.  Common, try again: " 
  elif [ "$SCORE" == "q" ]; then 
    echo "Average rating: $AVERAGE%." 
    break 
  else 
    SUM=$[$SUM + $SCORE] 
    NUM=$[$NUM + 1] 
    AVERAGE=$[$SUM / $NUM] 
  fi 
 
done 
 
echo "Exiting."

【例子:003】自减输出

代码如下:

[scriptname: doit.sh] 
while (( $# > 0 )) 
do 
  echo $* 
  shift 
done  
         
/> ./doit.sh a b c d e 
a b c d e 
b c d e 
c d e 
d e 
e

【例子:004】在文件中添加前缀

代码如下:

# 人名列表 
# cat namelist 
Jame 
Bob 
Tom 
Jerry 
Sherry 
Alice 
John 
 
# 脚本程序 
# cat namelist.sh 
#!/bin/bash 
for name in $(cat namelist) 
do 
        echo "name= " $name 
done 
echo "The name is out of namelist file" 
 
# 输出结果 
# ./namelist.sh 
name=  Jame 
name=  Bob 
name=  Tom 
name=  Jerry 
name=  Sherry 
name=  Alice 
name=  John

【例子:005】批量测试文件是否存在

代码如下:

[root@host ~]# cat testfile.sh       
#!/bin/bash 
 
 
for file in test*.sh 
do 
  if [ -f $file ];then 
     echo "$file existed." 
  fi 
done 
 
[root@host ~]# ./testfile.sh 
test.sh existed. 
test1.sh existed. 
test2.sh existed. 
test3.sh existed. 
test4.sh existed. 
test5.sh existed. 
test78.sh existed. 
test_dev_null.sh existed. 
testfile.sh existed.

【例子:005】用指定大小文件填充硬盘

代码如下:

[root@host ~]# df -ih /tmp 
Filesystem            Inodes   IUsed   IFree IUse% Mounted on 
/dev/mapper/vg00-lvol5 
                       1000K    3.8K    997K    1% /tmp 
[root@host ~]# cat cover_disk.sh 
#!/bin/env bash 
counter=0 
max=3800 
remainder=0 
while true 
do 
    ((counter=counter+1)) 
    if [ ${#counter} -gt $max ];then 
        break 
    fi 
    ((remainder=counter%1000)) 
    if [ $remainder -eq 0 ];then 
        echo -e "counter=$counter\tdate=" $(date) 
    fi 
    mkdir -p /tmp/temp 
    cat < testfile > "/tmp/temp/myfile.$counter" 
    if [ $? -ne 0 ];then 
        echo "Failed to write file to Disk." 
        exit 1 
    fi 
done 
echo "Done!" 
[root@host ~]# ./cover_disk.sh 
counter=1000    date= Wed Sep 10 09:20:39 HKT 2014 
counter=2000    date= Wed Sep 10 09:20:48 HKT 2014 
counter=3000    date= Wed Sep 10 09:20:56 HKT 2014 
cat: write error: No space left on device 
Failed to write file to Disk. 
dd if=/dev/zero of=testfile bs=1M count=1

【例子:006】通过遍历的方法读取配置文件

代码如下:

[root@host ~]# cat hosts.allow 
127.0.0.1 
127.0.0.2 
127.0.0.3 
127.0.0.4 
127.0.0.5 
127.0.0.6 
127.0.0.7 
127.0.0.8 
127.0.0.9 
[root@host ~]# cat readlines.sh 
#!/bin/env bash 
i=0 
while read LINE;do 
    hosts_allow[$i]=$LINE 
    ((i++)) 
done < hosts.allow 
for ((i=1;i<=${#hosts_allow[@]};i++)); do 
    echo ${hosts_allow[$i]} 
done 
echo "Done" 
[root@host ~]# ./readlines.sh 
127.0.0.2 
127.0.0.3 
127.0.0.4 
127.0.0.5 
127.0.0.6 
127.0.0.7 
127.0.0.8 
127.0.0.9 
Done

【例子:007】简单正则表达式应用

代码如下:

[root@host ~]# cat regex.sh 
#!/bin/env sh 
#Filename: regex.sh 
regex="[A-Za-z0-9]{6}" 
if [[ $1 =~ $regex ]] 
then 
  num=$1 
  echo $num 
else 
  echo "Invalid entry" 
  exit 1 
fi 
[root@host ~]# ./regex.sh 123abc 
123abc 
 
#!/bin/env bash 
#Filename: validint.sh 
validint(){ 
    ret=`echo $1 | awk '{start = match($1,/^-?[0-9]+$/);if (start == 0) print "1";else print "0"}'` 
    return $ret 

 
validint $1 
 
if [ $? -ne 0 ]; then 
    echo "Wrong Entry" 
    exit 1 
else 
    echo "OK! Input number is:" $1 
fi

【例子:008】简单的按日期备份文件

代码如下:

#!/bin/bash 
 
NOW=$(date +"%m-%d-%Y")      # 当前日期 
FILE="backup.$NOW.tar.gz"    # 备份文件 
echo "Backing up data to /tmp/backup.$NOW.tar.gz file, please wait..."  #打印信息 
tar xcvf /tmp/backup.$NOW.tar.gz /home/ /etc/ /var       # 同时备份多个文件到指定的tar压缩文件中 
echo "Done..."

(0)

相关推荐

  • 5个实用的shell脚本面试题和答案

    这边提到的5个面试问题,延续之前的有关Linux面试问题和答案.如果你是Tecmint的读者,你的支持我非常感谢. 1. 写一个shell脚本来得到当前的日期,时间,用户名和当前工作目录. 答案 : 输出用户名,当前日期和时间,以及当前工作目录的命令就是logname,date,who i am和pwd. 现在,创建一个名为userstats.sh文件,将下面的代码添加到它. 复制代码 代码如下: #!/bin/bash echo "Hello, $LOGNAME" echo &quo

  • 8个实用的Shell脚本分享

    几个Shell脚本的例子,觉得还不错. [例子:001]判断输入为数字,字符或其他 复制代码 代码如下: #!/bin/bash  read -p "Enter a number or string here:" input    case $input in     [0-9]) echo -e "Good job, Your input is a numberic! \n" ;;  [a-zA-Z]) echo -e "Good job, Your i

  • 利用Python编写的实用运维脚本分享

    目录 1. 执行外部程序或命令 2. 文件和目录操作(命名.删除.拷贝.移动等) 3. 创建和解包归档文件 参考 Python在很大程度上可以对shell脚本进行替代.笔者一般单行命令用shell,复杂点的多行操作就直接用Python了.这篇文章就归纳一下Python的一些实用脚本操作. 1. 执行外部程序或命令 我们有以下C语言程序cal.c(已编译为.out文件),该程序负责输入两个命令行参数并打印它们的和.该程序需要用Python去调用C语言程序并检查程序是否正常返回(正常返回会返回 0)

  • Linux下实现SSH免密码登录和实现秘钥的管理、分发、部署SHELL脚本分享

    环境: ssh server: 192.168.100.29  server.example.com ssh client: 192.168.100.30  client.example.com 通过root用户建立秘钥认证实现SHELL脚本管理,分发,部署 首先client端创建秘钥对,并将公钥分发给需要登录的SSH服务端 注:公钥相当于锁,私钥相当于钥匙,我们这里相当于在客户端创建一对钥匙和锁,想要做到SSH免密码登录,就相当于我们将锁分发到服务端并装锁,然后客户端就可以利用钥匙开锁. 一.

  • 自己常用的一些shell脚本分享

    自己写了一下小的shell实例,虽然很小,但所有的大的程序都是由小的模块堆积起来的,程序员一定要懂得一种脚本的书写,而我,只会在linux下工作,所以就只能写linux的shell脚本了,呵呵,本文会陆续更新,给自己加油! 1.模拟linnux登录shell 复制代码 代码如下: #/bin/bash echo -n "login:" read name echo -n "password:" read passwd if [ $name = "cht&q

  • CentOS 6.x系统升级Python到2.7版本的Shell脚本分享

    在CentOS 6.x上,默认自带的Python是2.6.x版本,这个版本的Python有点老了,比如"collections.OrderedDict"就是2.7才有的,而且著名的Python Web框架Django的新版(如:1.7)就不支持Python2.6,最低要求是2.7了.而一些公司或者共有云上的服务器就是使用CentOS6.x,所以也就有了升级Python到2.7的需求. 升级Python之前,需要先安装一些工具和软件库,否则后面安装Python或pip时可能出错. Pyt

  • 一个简洁的全自动安装LNMP服务器环境的Shell脚本分享

    此脚本在生产服务器上使用了一年多,本脚本崇尚简单唯美,只需要一个脚本就可以在任何一台有网络的服务器上自动配置LNMP. 本脚本会在脚本执行目录下,建packages目录用于存放LNMP所需要的软件.大家安装完可以删除该目录. 使用方法: 1.把shell脚本的内容保存为nginx_php 2.root权限下运行: 复制代码 代码如下: chmod u+x nginx_php; ./nginx_php init; ./nginx_php ins_mysql-server; ./nginx_php

  • 一个强大的网络分析shell脚本分享(实时流量、连接统计)

    介绍一个强大的分析网络的shell脚本,此脚本是从EZHTTP拆分出来的,觉得有必要单独介绍下. 脚本运行效果截图: 此脚本包含的功能有: 1.实时监控任意网卡的流量 2.统计10秒内平均流量 3.统计每个端口在10秒内的平均流量,基于客户端和服务端端口统计.可以看出哪些端口占流量比较大,对于web服务器,一般是80端口.其它端口受到攻击时,也有可能其它端口流量比较大.所以此功能可以帮助我们端口流量是否正常. 4.统计在10s内占用带宽最大的前10个ip.此项功能可以帮助我们来查出是否有恶意占用

  • 监控网站是否可以正常打开的Shell脚本分享

    最近刚好需要测试一下新建站的稳定性,所以写了个SHELL脚本放到本机(最近换了mac本),能够实时查看你需要监控的WEB页面状态,并发送到指定邮箱. 这里赞一下OS X自带有crontab计划任务,可以直接在本机测试脚本啦^_^ # vi check_web_alive.sh 复制代码 代码如下: #!/bin/bash PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH # de

  • MySQL的一些功能实用的Linux shell脚本分享

    Memcached启动脚本 # vim /etc/init.d/memcached #!/bin/bash #======================================================================================= # chkconfig: - 80 12 # description: Distributed memory caching daemon # processname: memcached #===========

随机推荐