以练代学之shell入门(一)
5年前的时候,开始接触linux操作系统,接触的第一步就是学习shell脚本。用小脚本以连代学入了门。
1) 9*9乘法输出
2) 检验主机的服务是否启动
3) 冒泡排序
4) 备份当时team服务器上的dokuwili、mantis等应用。
一、 9*9乘法输出
主要目的是练习变量、for循环语句、if条件语句。
功能是输出9*9乘法
稚嫩的手法:
#!/bin/bash
#Function:output 9*9 expression
#Date:2011 04 21
#Version:1.0.0.0
LANG=C
export LANG i=1
j=1
rst=0 for i in $(seq 1 9)
do
result=''
for j in $(seq 1 $i)
do
rst=$(($i*$j))
result="$result$i*$j=$rst "
j=$(($j+1))
done
echo $result
i=$(($i+1))
done exit 0
效果
[root@Grace ~]# ./99Plus.sh 1*1=1 2*1=2 2*2=4 3*1=3 3*2=6 3*3=9 4*1=4 4*2=8 4*3=12 4*4=16 5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36 7*1=7 7*2=14 7*3=21 7*4=28 7*5=35 7*6=42 7*7=49 8*1=8 8*2=16 8*3=24 8*4=32 8*5=40 8*6=48 8*7=56 8*8=64 9*1=9 9*2=18 9*3=27 9*4=36 9*5=45 9*6=54 9*7=63 9*8=72 9*9=81 |
二、 检验主机的服务是否启动
主要目的是if条件语句、``。
功能是检验主机服务是否启动,并输出对应的信息
稚嫩的手法:
#!/bin/bash
#Function:using "if then" to show host's service.
#Date:2011 04 21
#Version:1.0.0.0
#1.print the program's function
echo "Now,the service of your linux system will be detected!"
echo "the www,ftp,ssh and send mail+pop3 will be detected!"
echo " "
#2.www
www=`netstat -an|grep LISTEN|grep :80`
if [ "$www" != "" ]; then
echo "WWW is running"
else
echo "WWW is NOT running"
fi #3.ftp
ftp=`netstat -an|grep LISTEN|grep :21`
if [ "$ftp" != "" ]; then
echo "FTP is running"
else
echo "FTP is NOT running"
fi #4.ssh
ssh=`netstat -an|grep LISTEN|grep :22`
if [ "$ssh" != "" ]; then
echo "SSH is running"
else
echo "SSH is NOT running"
fi
#5.smtp+pop3
smtp=`netstat -an|grep LISTEN|grep :25`
pop3=`netstat -an|grep LISTEN|grep :110`
if [ "$smtp" != "" ] && [ "$pop3" != "" ]; then
echo "sendmail is OK!"
elif [ "$smtp" != "" ] && [ "$pop3" == "" ]; then
echo "sendmail have some proplems of your pop3!"
elif [ "$smtp" == ""] && [ "$pop3" != "" ]; then
echo "sendmail have some proplems of your SMTP!"
else
echo "sendmail is not running!"
fi
效果
[root@Grace ~]# ./port-test.sh the www,ftp,ssh and send mail+pop3 will be detected! FTP is NOT running SSH is running sendmail have some proplems of your pop3! |
三、 冒泡排序
练习参数的使用、eval、if条件语句、比较符号、for循环语句。
功能是一次性输入n个数字,请按降序输出
拙劣的手法:
#Function:asc sort
#Date:2011 04 19
#Version:1.0.0.0
LANG=C
export LANG #1.read numbers
i=$#
var[1]=0
for (( a=1; a<=$i; a=a+1 ))
do
eval var[$a]=\$$a
done #2.sort
num=""
for (( a=1; a<=$i-1; a=a+1 ))
do
for (( j=1; j<=$i-$a; j=j+1 ))
do
if [ "${var[$j]}" -gt "${var[$j+1]}" ]; then
num="${var[$j]}"
var[$j]="${var[$j+1]}"
var[$j+1]="$num"
fi
done
done #3.output
result=""
for (( a=1;a<=$i-1; a=a+1 ))
do
result="$result${var[$a]},"
done
echo "$result${var[$i]}" exit 0
效果
[root@Grace ~]# ./asort.sh 8 100 9 2 0 119 19 0,2,8,9,19,100,119 [root@Grace ~]# ./asort.sh 3220 456 1000 9 0 2 10 20 98 166 0,2,9,10,20,98,456,1000,3220,32200 |
显而易见的缺点是:
没有对输入进行校验。
此外,获取值也可以使用read读取
四、 备份服务器的应用组件
主要目的是练习case语句、同时真的需要备份数据。
功能是
1) 备份目录 'data' 到 'qvbackp'
2) 加入简单的输入校验
3) 输出备份信息
4) 备份成功的话,同时把恢复脚本写好
拙劣的手法:
#!/bin/bash
#Function:backup directory 'data' to dest 'qvbackp'
#Date:2011 04 25
#Version:1.0.0.0 declare -i count=$#
# step1:backup and move backuped files to another directory
case $count in
"1")
if [ "$1" == "--help" ] ; then
echo "Usage: qvbackup.sh SOURCE-DIRECTORY DEST-DIRECTORY"
echo "Backup files of SOURCE-DIRECTORY to DEST-DIRECTORY."
exit
else
echo "Invalid parameters, make sure all parameters are correct. "
exit
fi
;;
"2")
if [ ! -d $1 ] ; then
echo "No such file or directory"
exit
elif [ ! -d $2 ] ; then
mkdir -p $2
fi srcdir=$(dirname $1)
srcname=$(basename $1)
destdir=$2
destname=$(basename $2)
destdir="${destdir%/}/"
# setp1.1:when today is the first day of the month,
# the programme will move the all the backuped file
# to another directory.
if [ $(date +%d) == "01" ] ; then
if [ $(whereis -b "$destname$(date +%d)") ] ; then
pushd $(dirname $destdir)
rm -rf "$destname$(date +%d)" 1>/dev/null 2>>"${destdir}qvbackup.log"
popd
fi
pushd $(dirname $destdir)
mv "$destname" "$destname$(date +%d)"
mkdir -p $2
popd
fi
# step1.2:backup files of SOURCE-DIRECTORY to
# DEST-DIRECTORY
backupfile="$(date +%Y-%m-%d-%H-%M-%S)_$srcname.tgz"
destfile="$destdir$backupfile"
pushd $srcdir
tar -g "${destdir}snapshot" -zcf $destfile $srcname 1>/dev/null 2>>"${destdir}qvbackup.log"
retCode=$?
popd ;;
"0")
echo "No parameters, please make sure."
exit
;;
*)
echo "Too more parameters, please make sure."
exit
;;
esac # setp2:output backup log ,backup information and recover scripts
rstMsg=""
pushd $destdir
if [ "$retCode" == "0" ] ; then
rstMsg="$(date +%Y-%m-%d-%H-%M-%S) backup OK"
echo "tar zxf $destfile">>qvrecover.sh
else
rstMsg="$(date +%Y-%m-%d-%H-%M-%S) backup ERROR"
fi
echo $rstMsg>>qvbackup.log
popd
echo $rstMsg
exit 0
问题是
1.一直备份,但磁盘占满了怎么办,需要自动化监测磁盘使用率。
2.因为组件比较小,使用的是完全备份,是不是可以保持最近一周的不删掉或者最近的五个、十个?
以练代学之shell入门(一)的更多相关文章
- 好记性不如烂笔头--linux学习笔记9练手写个shell脚本
#!/bin/bash #auto make install httpd #by authors baker95935 #httpd define path variable H_FILES=http ...
- Linux shell入门基础(六)
六.Shell脚本编程详解 将上述五部分的内容,串联起来,增加对Shell的了解 01.shell脚本 shell: # #perl #python #php #jsp 不同的脚本执行不同的文本,执行 ...
- Linux shell入门基础(一)
Linux shell入门基础(一): 01.增加删除用户: #useradd byf userdel byf(主目录未删除) userdel -r byf 该用户的属性:usermod 用 ...
- Shell - 简明Shell入门
本文以示例和注释的方式,对Shell编程的基本知识点进行了总结和回顾,所有脚本均已做了基本的调试和验证. Shell - 简明Shell入门 01 - 第一个脚本 脚本的定义.执行方法以及echo命令 ...
- linux shell 入门
本文是本人学习linux shell入门收集整理,不完全原创. 参考博文: http://www.cnblogs.com/suyang/archive/2008/05/18/1201990.html ...
- 小代学Spring Boot之数据源
想要获取更多文章可以访问我的博客 - 代码无止境. 经过一天对Spring Boot的研究,小代同学已经对Spring Boot框架有了一个大概的认识.并且还创建了一个简单的Spring Boot的W ...
- 小代学Spring Boot之集成MyBatis
想要获取更多文章可以访问我的博客 - 代码无止境. 上一篇小代同学在Spring Boot项目中配置了数据源,但是通常来讲我们访问数据库都会通过一个ORM框架,很少会直接使用JDBC来执行数据库操作的 ...
- 小代学Spring Boot之自定义Starter
想要获取更多文章可以访问我的博客 - 代码无止境. 上一篇小代同学在Spring Boot项目中配置了数据源,但是通常来讲我们访问数据库都会通过一个ORM框架,很少会直接使用JDBC来执行数据库操作的 ...
- shell 入门学习
目录 shell 入门学习 注释 执行与启动 变量 语法 调试 title: shell 入门学习 date: 2019/7/16 15:47:49 toc: true --- shell 入门学习 ...
随机推荐
- Oracle定时计划快速使用
Oracle定时计划快速使用 前言: SQL Server中有相关的定时计划,可以直接打开sql server 的任务管理器进行配置,可以方便.快速实现定时执行相应任务.相应的Oracle也有对应的定 ...
- 用两个Stack来实现一个Queue
import java.util.Stack; /** * 问题:用两个Stack来实现一个Queue; * 方法:栈的特点是先进后出:而队列的特点是先进先出: * 用两个栈正好能把顺序调过来: * ...
- Lab_7_Automating_v2.5
System Operations - Lab 7: Automating Deployments with CloudFormation - 2.5 ======================== ...
- Katana
- KAT101 - Katana has many nodes for operation, e.g. MaterialAssign, - The connections between nodes ...
- 使用spring连接及操作mongodb3.0
前边有一篇记录过不使用spring,直接在java代码中连接和操作mongodb数据库,这里就紧随其后记录一下使用spring的情况下,在java中简单操作mongodb. maven导包配置: ...
- NLog配置文件写入数据库中
NLog配置文件: <target xsi:type="Database" name="database" connectionString=" ...
- 几种加解密方法:AES、DES、SHA数据加密
一般项目都会用上加密,刚好手上的项目就用到DES加密,就贴一些代码记录一下 DES加密步奏: 1.初始化两个字符串,一个为指定的秘钥,一个为初始化向量,要求是8个字符. 2.加密:秘钥.向量.需加密的 ...
- jquery.cookie() 的使用(原)
jquery.cookie()是一个轻量级的cookie 插件,可以读取.写入.删除 cookie. 步奏: 1. 添加jQuery插件和jQuery.cookie插件 <script src= ...
- 对《神奇的C语言》文中例子 5 代码的分析讨论
在春节前,我曾经参与在<神奇的C语言>一文中的例子(5)的讨论,但限于评论内容的有限,现在本文再次对这个问题单独讨论.(此问题原貌,详见<神奇的C语言>,这里我将原文中的代码稍 ...
- asp.net中插件开发模式说明
第一定义接口 /// <summary> /// 这是插件必须实现的接口,也是主程序与插件通信的唯一接口 /// 换句话说,主程序只认识插件里的这些方法 ...