linux sheel script demo
demo1 (输入/输出)
1.1. target :
输入姓、名, 输出姓名
1.2. create directory
mkdir ~/bin
1.3. create & edit sheel script
vim fullname.sh
note: more comment is useful
#!/bin/bash
#Program
# User inputs his first name and last name . Program shows his full name.
#History :
#// logan First lease
PATH=/bin:$PATH #将当前目录加入系统环境
export PATH
read -p "Please input your firstname:" firstname
read -p "Please input your lastname:" lastname
echo -e "\nYour full name is :" ${firstname} ${lastname}
1.4. run
[rocky@localhost bin]$ sh fullname.sh
demo2 (计算PI)
2.1 target
输入小数点后位数 输出PI
2.2 create & edit
vim cal_pi.sh
#!/bin/bash
#Program:
# Usre input a scale number to calculate pi number.
#History:
#// logan First lease
PATH=/bin:PATH
export PATH
echo -e "This program will calculate pi value. \n"
echo -e "You should input a float number to calculate pi value. \n"
read -p "This scale number (10-10000) ? " checking
num=${checking:-""}
echo -e "Starting calculate pi value. Be patient."
time echo "scale=${num}; 4*a(1)"|bc -lq
2.3 run
输入 5
输出 3.14156
demo3 ($# $@ $* 的使用)
3.1 target
输入参数, 显示相关结果
3.2 create & edit sheel
vim how_paras.sh
#!/bin/bash
#Program:
# Program shows the script name, parameters
#History:
#// logan First release
PATH=/bin:$PATH
export PATH echo "The script name is ==> ${0}"
echo "Total parameter number is ==> $#"
[ "$#" -lt ] && echo "The number of parameter is less than 2. Stop here." && eexit
echo "Your whole parameter is ==> '$@'"
echo "The 1st parameter ==> ${1}"
echo "The 2nd parameter ==> ${2}"
3.3 run
[logan@localhost bin]$ sh how_paras.sh zhang li wang
The script name is ==> how_paras.sh
Total parameter number is ==> 3
Your whole parameter is ==> 'zhang li wang'
The 1st parameter ==> zhang
The 2nd parameter ==> li
demo4 (shift 使用)
4.1 vim how_shift.sh
.....#省略注释 PATH......
echo "The script name is ==> ${0}"
echo "Total parameter number is ==> $#"
[ "$#" -lt ] && echo "The number of parameter is less than 6. Stop here." && eexit
echo "Your whole parameter is ==> '$@'"
shift
echo "------------------shift one--------"
echo "Total parameter number is ==>$#"
echo "The whole parameter is $@"
shift
echo "------------------shift three------"
echo "Total parameter number is ==>$#"
echo "the whole parameter is ==> $@"
4.2 run
[logan@localhost bin]$ sh how_shift.sh one two three four five six
The script name is ==> how_paras.sh
Total parameter number is ==> 6
Your whole parameter is ==> 'one two three four five six'
------------------shift one--------
Total parameter number is ==>5
The whole parameter is two three four five six
------------------shift three------
Total parameter number is ==>2
the whole parameter is ==> five six
[logan@localhost bin]$ vim how_paras.sh
demo5 (if 条件判断式)
5.1 vim if_fi.sh
#!/bin/bash
#Program:
# This program shows the user's choice
#History:
# logan first release
PATH=/bin:$PATH
export PATH read -p "Please input (Y/N): " yn if [ "${yn}" == "Y" ] || [ "${yn}" == "y" ];then
echo "OK, continue"
exit
fi if [ "${yn}" == "N" ] || [ "${yn}" == "n" ];then
echo "Oh, interrupt!"
exit
fi echo "I don't know what your choice is" && exit
note: 中括号内 变量及字符两边需要空格符,否则报错 '找不到命令'
5.2 run
sh if_fi.sh
demo6 (日期计算)
6.1 vim cal_retired.sh
#!/bin/bash
#Program:
# You input your demobilization date, I calculate how many days before you demobilize.
#History:
#// logan first release
PATH=/bin:$PATH
export PATH #. tell user the function of the shell script, and the format of the date
echo "This program will try to calculate:"
echo "How many days before your demobilization date..."
read -p "Please input your demobilization date (YYYYMMDD ex>20131230): " date2 #. test the comment you just input with the Pattern
date_d=$(echo ${date2} |grep '[0-9]\{8\}') # check length whether of the input num
if [ "${date_d}" == "" ];then
echo "You input the wrong date format...."
exit
fi #. begin to calculate the date
declare -i date_dem=$(date --date="${date2}" +%s) #seconds count of the input date
declare -i date_now=$(date +%s) #seconds count date now
declare -i date_total_s=$((${date_dem}-${date_now})) #differ from the two date
declare -i date_d=$((${date_total_s}///)) #transfer to days
if [ "${date_total_s}" -lt "" ];then
echo "You had been demobization before: " $((-*${date_d})) " days ago"
else
declare -i date_h=$(($((${date_total_s}-${date_d}***))//))
echo "You will demobilize after ${date_d} days and ${date_h} hours."
fi
6.2 run
sh cal_retired.sh
demo7 (case..esac)
7.1 vim hello-3.sh
#!/bin/bash
#Program:
# Show "Hello" from $.... by using case .... esac
#History:
#// logan First lease
PATH=/bin:$PATH
export PATH case ${} in
"hello")
echo "Hello, how are you?"
;;
"")
echo "You MUST input parameters, ex> {${0} someword}"
;;
*)
echo "Usage ${0} {hello}"
;; esac
7.2 run
sh hello-3.sh
demo8 (function使用)
vim demo.sh
#!/bin/bash
#Program:
# Show "one two three" from $.... by using case .... esac
#History:
#// logan First lease
PATH=/bin:$PATH
export PATH function printit(){
echo -n "Your choice is " #-n means not enter to next line
} case ${} in
"one")
printit; echo ${} | tr 'a-z' 'A-Z' #transfer to Upper
;;
"two")
printit; echo ${} | tr 'a-z' 'A-Z' #transfer to Upper
;;
"three")
printit; echo ${} | tr 'a-z' 'A-Z' #transfer to Upper
;;
*)
echo "Usage ${0} {one|two|three}"
;; esac
8.2 run
sh demo.sh one
demo9
9.1 vim while_do_done.sh
#!/bin/bash
#Program:
# Repeat question until user input correct answer.
#History:
#// logan first release
PATH=/bin:$PATH
export PATH while [ "${yn}" != "yes" -a "${yn}" != "YES" ]
do
read -p "Please input yes/YES to stop this program: " yn
done
echo "OK! you input the correct answer."
9.2 run
sh while_do_done.sh
demo10
10.1 vim add_1_to_100.sh
#!/bin/bash
#Program:
# calculate the sum of num ,...
#History:
#// logan first release
PATH=/bin:$PATH
export PATH s=
i=
while [ "${i}" != "" ]
do
i=$(($i+))
s=$(($s+i))
done
echo "The result of '1+2+3...+100' is ==> $s"
10.2 run
sh add_1_to_100.sh
10.3 vim add_1_to_num.sh
#!/bin/bash
#Program:
# calculate the sum of num ,...
#History:
#// logan first release
PATH=/bin:$PATH
export PATH s=
i=
j=
while [ "${j}" -le "" ]
do
read -p "Please input the num: " j
done
while [ "${i}" != "${j}" ]
do
i=$(($i+))
s=$(($s+i))
done
echo "The result of '1+...+ ${j}' is ==> $s"
demo11
11.1 vim for_test.sh
#!/bin/bash
PATH=/bin:$PATH
export PATH for animal in dog cat elephant
do
echo "There are ${animal}s..."
done
11.2 sh for_test.sh
demo12
12.1 target
ping 局域网内 192.168.1.1~100的看通不通, seq(sequence)指令的使用
12.2 vim pingip.sh
#!/bin/bash
#Program
# Use ping command to check the network's PC state
#History
#2017/04/14 logan first release
PATH=/bin:$PATH
export PATH network="192.168.1"
for sitenu in $(seq 1 100) #seq 为 sequence(连续)的缩写
do
ping -c 1 -w 1 ${network}.${sitenu} &> /dev/null && result=0 || result=1
if [ "${result}" == 0 ];then
echo "Server ${network}.${sitenu} is UP."
else
echo "Server ${network}.${sitenu} is DOWN."
fi
done
12.3 run
sh pingip.sh
demo13
13.1 target
判断式(test)的使用
13.2 vim dir_perm.sh
#!/bin/bash
#Program
# User input dir name, I find the permission of files.
#History:
#2017/04/14 logan first release
PATH=/bin:$PATH
export PATH read -p "Please input a directory: " dir
if [ "${dir}" == "" -o ! -d "${dir}" ]; then
echo "The ${dir} is NOT exist in your system."
exit 1
fi filelist=$(ls ${dir})
for filename in ${filelist}
do
perm=""
test -r "${dir}/${filename}" && perm="${perm} readable"
test -w "${dir}/${filename}" && perm="${perm} writable"
test -x "${dir}/${filename}" && perm="${perm} executable"
echo "The file ${dir}/${filename}'s permission is ${perm} "
done
13.3 run
sh dir_perm.sh
demo14
14.1 description
for循环的使用
14.2 vim cal_1_nu.sh
#!/bin/bash
#Program
# Try do calculate 1+2+..+ ${your_input}
#History:
#2017/04/14 logan first release
PATH=/bin:$PATH
export PATH read -p "Please input a number, I will count for 1+2..+ your_input:" nu s=0
for (( i=1; i<=${nu}; i=i+1))
do
s=$((${s}+${i}))
done
echo "The result of '1+2+...${nu}' is ==> ${s}"
demo15
15.1 target
随机选择3种菜
15.2 vim what_to_eat3.sh
#!/bin/bash
#Program
# Try do tell you what you may eat.
PATH=/bin:$PATH
export PATH eat[]="zhang san ji"
eat[]="li si ji"
eat[]='wang wu ji'
eat[]="zhang liu ji"
eat[]="qian qi ji"
eat[]="hao 1"
eat[]="hao 2"
eat[]="hao 3"
eat[]="hao 4"
num= count=
while [ "${count}" -lt ]; do
check=$(( ${RANDOM} * ${num} / + ))
flag=
if [ "${count}" -ge ];then
for i in $(seq ${count} )
do
if [ "${selectedNum[$i]}" == $check ];then
flag=
fi
done
fi
if [ ${flag} == ];then
echo "You mat eat ${eat[${check}]}"
count=$((${count} + ))
selectedNum[${count}]=${check} fi
done
demo16 (计算生日)
16.1 vim birthday_howlong.sh
#!/bin/bash
#Program
# how many days your birthday remain
#History
#// logan first release
read -p "Please input your birthday (MMDD, ex>0709): " bir
now=`date +%m%d`
if [ "$bir" == "$now" ];then
echo "Happy birthday to you!!!"
elif [ "$bir" -gt "$now" ];then
year=`date +%Y`
total_d=$(($((`date --date="$year$bir" +%s`-`date +%s`))///))
echo "Your birthday will be $total_d later"
else
year=$((`date +%Y`+))
total_d=$(($((`date --date="$year$bir" +%s`-`date +%s`))///))
echo "Your birthday will be $total_d later"
fi
demo17 (show accounts)
17.1 vim show_account.sh
#!/bin/bash
accounts=`cat /etc/passwd | cut -d':' -f1`
for account in $accounts
do
declare -i i=$i+
echo "The $i account is \"$account\" "
done
linux sheel script demo的更多相关文章
- linux SPI bus demo hacking
/********************************************************************** * linux SPI bus demo hacking ...
- (原创)鸟哥linux学习script shell相关笔记
在使用鸟哥linux进行script shell学习的过程中碰到一些不太明白的知识点,在这里进行一些记录 1. [root@www scripts]# vi sh03.sh #!/bin/bash # ...
- 一个改动配置文件的linux shell script
不久以前,以前搜到一篇博客是读取配置文件的,http://www.cnblogs.com/bo083/archive/2012/11/19/2777076.html,用到如今,感觉十分方便.感谢作者. ...
- Linux bash script regex auto replace
Linux bash script regex auto replace 自动替换 /assets/css/0.styles.96df394b.css => ./assets/css/0.sty ...
- Linux Bash Script conditions
Linux Bash Script conditions shell 编程之条件判断 条件判断式语句.单分支 if 语句.双分支 if 语句.多分支 if 语句.case 语句 refs http:/ ...
- Linux Bash Script loop
Linux Bash Script loop shell 编程之流程控制 for 循环.while 循环和 until 循环 for var in item1 item2 ... itemN do c ...
- Linux shell script All In One
Linux shell script All In One refs xgqfrms 2012-2020 www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
- Linux下script命令录制、回放和共享终端操作script -t 2> timing.log -a output.session # 开始录制
Linux下script命令录制.回放和共享终端操作 [日期:2018-09-04] 来源:cnblogs.com/f-ck-need-u 作者:骏马金龙 [字体:大 中 小] 另一篇终端会话共 ...
- 【学习笔记】linux bash script
1. sed sed 是一种流编辑器,它是文本处理中非常常用的工具,能够完美的配合正则表达式使用,功能非常强大. mkdir playground touch test.txt echo " ...
随机推荐
- 二叉树的遍历python 代码
__author__ = "WSX" class Node: def __init__(self, val = None, left = None, right = None): ...
- centos7 systemd 必知必会
systemd 简介: systemd 是一个 Linux 系统基础组件的集合, 提供了一个系统和服务管理器, 运行为 PID 1 并负责启动其它程序 功能包括: 1.支持并行化任务 2.同时采用 s ...
- 限制USB延迟启动
阻止用户从未经授权的位置安装设备驱动程序. 组策略 ...too long too see directly. what determins when a drivers i s load. spe ...
- 安装notepad++之后鼠标右键无Edit with notepad++
在鼠标右键上加入使用notepad++编辑 最近发现一个问题在安装完notepad++文本编辑器之后,在一个文本文件上右键有时候并没有出现“使用notepad++编辑的选项”,不用着急可以通过简单地修 ...
- 一个迷你的 Node.js 基于 Express 的 MVR 模式的 API工程 的分析
1. 工程说明 该工程是基于 Express 库,编写的一个 API 查询返回的一个微型应用. API Resource 就是把 API 的内容当做网络资源去处理.工程中的路由访问也是返回 API 内 ...
- Docker - 故障排查指南
这阵子开始捣鼓 Docker,遇到过不少问题,下面记录下问题以及解决方案 一.Docker 报 Failed to start Docker Application Container Engine ...
- 文献综述十四:基于Oracle11g的超市进销存管理系统设计与实现
一.基本信息 标题:基于Oracle11g的超市进销存管理系统设计与实现 时间:2016 出版源:技术创新 文件分类:对数据库的研究 二.研究背景 为超市设计开发的超市管理系统,采用的是 VC+ Or ...
- github不能访问,可能原因是host里有太多过期的对应
github好久不能访问 一直以为是墙的原因 今天发现原来是有很多过期的host造成的 删掉那些host好了
- Jmeter断言实例—响应断言
断言有很多种,最最最常用的一种就是响应断言,目前我用的最多是这一种,下面列举一个运用响应断言的实例 对相应的请求添加断言 **Main sample and sub-samples:断言应用于主采样器 ...
- git 学习之基础知识
在前面的一个帖子中我们知道了不同的版本控制系统的不同,在这个帖子中我们会大致的了解到它们是管理各个版本的,这对我们学习 git 是很有帮助的. 对于集中式的版本控制系统来说每次的更新主要记录内容的具体 ...