博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bash/shell编程学习(3)
阅读量:6485 次
发布时间:2019-06-23

本文共 6522 字,大约阅读时间需要 21 分钟。

接继续,

1. 从键盘读取输入内容

#!/bin/bashread -p 'please input something:' inputecho 'your input:' $input

运行效果:

./read1.shplease input something:123your input: 123

 

2. while循环及case分支

#!/bin/bashprintf '\nplease input a number or character, press "q" or "Q" to quit:\n'while truedo    read reply    case $reply in       q|Q) echo 'bye!'; break;; #结束循环       [A-Za-z]*) echo 'you input a character:' $reply;; #如果输入的是纯英文字符       [0-9]*) echo 'you input a number:' $reply;; #如果输入的是纯数字    esac    printf 'please go on ...\n'done

运行效果:

./read1.shplease input a number or character, press "q" or "Q" to quit:123you input a number: 123please go on ...qweyou input a character: qweplease go on ...Qbye!

 

3. 文件操作相关

3.1 文件权限及所有者
ll (2个小写字母L)用于列出当前目录的所有文件(及目录)详细信息

[deploy@deploy myservice]$ lltotal 4drwxrwxr-x. 2 deploy deploy 6 Jan 21 17:10 a-rw-r--r--. 1 root root 40 Jan 21 14:41 test.txt

解读下这些输出,最开始的10个字符,拆分一下,其格式为:

类型(1位) 所属用户权限(3位) 所属用户组权限(3位) 其它组权限(3位)

所以:

d rwx rwx r-x 表示这是一个目录(第1位是d, Directory的首字母),然后所属用户有读(r,Read的首字母)、写(w,Write的首字母)、执行(x,代表eXecute)权限,所属用户组也同样具有所有权限,其它用户组具有读、执行权限。

- rw- r-- r-- 表示这是一个普通文件(第1位是-,表示普通文件),然后所属用户有read、write权限,所属用户组及其它组只能读。

注:第1位,除了d及-外,还有l表示link,说明这是符号链接,另外b表示块(block)设备,c表示字符(character)设备

继续看后面的输出,后面的二个字符串,即 deploy deploy 表示的是 所属用户及所属用户组,换句话说 目录 a 属于用户deploy及用户组deploy,而 test.txt属于用户root及用户组root

可以通过chown修改文件所属用户,示例:

sudo chown deploy test.txt

表示将test.txt的所属用户修改为deploy,因为该命令需要较高权限,所以前面加sudo切换到root身份,执行以后,再ll检测

[deploy@deploy myservice]$ lltotal 4drwxrwxr-x. 2 deploy deploy  6 Jan 21 17:10 a-rw-r--r--. 1 deploy root   40 Jan 21 14:41 test.txt

可以看到test.txt的所属用户已经变成deploy了。

chmod用于修改用户及目录权限,示例:

[deploy@deploy myservice]$ chmod +w test.txt[deploy@deploy myservice]$ lltotal 4drwxrwxr-x. 2 deploy deploy 6 Jan 21 17:10 a-rw-rw-r--. 1 deploy root 40 Jan 21 14:41 test.txt

chmod +w test.txt表示将test.txt的所属用户及所属用户组的权限增加写(w,write)权限

chmod a+w test.txt[deploy@deploy myservice]$ lltotal 4drwxrwxr-x. 2 deploy deploy 6 Jan 21 17:10 a-rw-rw-rw-. 1 deploy root 40 Jan 21 14:41 test.txt

这次在+w前加了一个a,表示all,即给所有人都增加了test.txt的写权限

[deploy@deploy myservice]$ chmod u-w test.txt[deploy@deploy myservice]$ ll test.txt-r--rw-rw-. 1 deploy root 40 Jan 21 14:41 test.txt

猜一下,也能大概知道u-w的意思,u即user缩写,-表示去掉权限,所以u-w表示将所属用户的write权限去掉,类似的

[deploy@deploy myservice]$ chmod g-r test.txt[deploy@deploy myservice]$ ll test.txt-r---w-rw-. 1 deploy root 40 Jan 21 14:41 test.txt

g-r表示将所属用户组的read权限去掉。

另外,从计算机内部的二进制来看,权限可以用3位2进制表示,从左向右依次为: 读、写、执行,所以111表示所有权限,101表示读及执行权限,000表示没任何权限,再考虑到 所属用户、所属用户组、其它组,也就是说有3组二进制,因此

chmod a+rwx 可以简化为 chmod 777
注:777是10进制表示,转换成权限2进制,即 111 111 111

[deploy@deploy myservice]$ chmod 777 test.txt[deploy@deploy myservice]$ ll test.txt-rwxrwxrwx. 1 deploy root 40 Jan 21 14:41 test.txt

类似的,如果要去掉所有人的所有权限

[deploy@deploy myservice]$ chmod -777 test.txt[deploy@deploy myservice]$ ll test.txt----------. 1 deploy root 40 Jan 21 14:41 test.txt

3.2 文件测试

#!/bin/bash[ -f "test.txt" ] && echo 'test.txt is exists'[ ! -f 'abc.txt' ] && echo 'abc.txt is not exist'

上面这段表示,表示如果文件test.txt存在,则输出test.txt is exists,类似的,如果文件abc.txt不存在,则输出abc.txt is not exists

再增加一些判断:

#!/bin/bash[ -f "test.txt" ] && echo 'test.txt is exists'[ ! -f 'abc.txt' ] && echo 'abc.txt is not exist'[ -x "test.txt" ] || echo 'test.txt can not execute'[ -d "a" ] && echo "a is directory"[ -d "a" ] && [ -r "a" ] && echo "a is directory and can read "

完整的文件判断条件收集如下:

-e filename 如果 filename存在,则为真 (e即Exist的首字母)-d filename 如果 filename为目录,则为真 (d即Directory的首字母)-f filename 如果 filename为常规文件,则为真 (f即File的首字母)-L filename 如果 filename为符号链接,则为真 (L即Link的首字母,注意这个是大写的)-r filename 如果 filename可读,则为真 (r即Read的首字母)-w filename 如果 filename可写,则为真 (w即Write的首字母)-x filename 如果 filename可执行,则为真 (x即eXecute)-s filename 如果文件长度不为0,则为真(可记忆为Substance的意思)-h filename 如果文件是软链接,则为真 filename1 -nt filename2 如果 filename1比 filename2新,则为真(-nt 可记忆为new than)filename1 -ot filename2 如果 filename1比 filename2旧,则为真(-nt 可记忆为old than)

  

4. 获取其它命令的输出

cmd_pwd=`pwd`cmd_date=`date "+%Y-%m-%d %H:%M:%d"`current_dir=${cmd_pwd}current_time=${cmd_date}

注意:命令字符串两端的不是单引号,而是`(即:键盘最左上角esc键下的~键)

输出:

当前目录:/Users/yjmyzz当前时间:2016-01-21 18:13:21

  

5. 获取nohup的进程id

先建一个app-test.sh来模拟应用程序,内容如下:

#!/bin/bashecho 'I want to sleep 100 second'sleep 100

这段代码,啥也不干,上来就sleep 100秒

再建一个app-run.sh来模拟后台启动app-test,内容如下:

#!/bin/bashecho 'app is starting...'nohup ./app-test.sh >/dev/null 2>&1 &echo 'ok,the pid is :'$!

测试一下:

~  ./app-run.shapp is starting...ok,the pid is :3168  ~  ps -ef|grep app-test.sh  501  3168     1   0  6:26PM ttys001    0:00.01 /bin/bash ./app-test.sh

即: $!可以取到nohup后台启动的程序对应的pid

 

将前面写到的这些知识,来一个综合练习:

#!/bin/bashcmd_pwd=`pwd`pwd_dir=${cmd_pwd}pid_file=${pwd_dir}/my.pid#启动sub_start() {    printf  "starting..."    if [ -w "${pid_file}" ]; then        echo ${pid_file}' has already exists'    else        nohup ./netty-sample >/dev/null 2>&1 &        pid=$!        echo $! > ${pid_file}        sleep 2        printf 'ok!\n'    fi}#停止sub_stop() {    printf  "stopping..."    if [ -w "${pid_file}" ]; then       pkill -F ${pid_file}       sleep 2       printf 'ok!\n'    else       printf '\n'${pid_file}' NOT exists'    fi}#查看状态sub_status(){    if [ -w "${pid_file}" ]; then      printf "running.\n"    else      printf "NOT running.\n"    fi}case $1 in start)    sub_start    ;; stop)    sub_stop    ;; restart)    printf  "restarting...\n"    sub_stop    sleep 1    sub_start    sleep 1    sub_status    ;;  status)    sub_status    ;; *)    printf "usage: $0 {start|stop|restart|status}\n"    exit 1    ;;esacexit 0

这是一段通用的启动shell脚本,大意是启动指定应用(上面的代码中,待启用的应用为netty-sample,大家可以自行修改)时,先找到进程id,然后保存到pid文件中,这样后面就通过检测pid是否存在,来判断程序是否在运行中,也可用于结束程序或重启程序。  

 

6、编写自己的linux服务

linux下的服务,只要在/etc/rc.d/init.d/下放一个自己的shell脚本就可以了,参考内容如下:

#! /bin/bash# chkconfig: 2345 10 90# description: myservice ....#. /etc/init.d/functionsdesc='my-service'cmd=`date "+%Y-%m-%d %H:%M:%S"`case "$1" in  start)	printf '%s is starting...' ${desc}	sleep 1	printf 'ok!\n'        echo ${cmd} >> /opt/myservice/test.txt        ;;  stop)	printf '%s is stopping...' ${desc}	sleep 1	printf 'ok!\n'        ;;  status)	printf '%s is ok!\n' ${desc}	;;  restart|reload|force-reload)	$0 stop	$0 start	;;  *)        echo $"Usage: $0 {start|stop|status|restart|reload|force-reload}"        exit 2esacexit 0

代码不复杂,启动时在指定目录写个文件而已,将其保存成myservice.sh,赋予执行权限,应该就可以service myservice start|stop|restart|status了,很简单吧。

(注:第3,4行的注释不能删除,否则后面加入开机启动时会报错。)

如果想让myservice服务开机即自动启动,可以执行

sudo chkconfig --add myservice

加好后,可以尝试重启下机器,看指定目录下的文件是否有生成,如果生成且写入了新内容,表明服务确实运行了。

另外:chkconfig 不加任何参数,可以查看当前有哪些服务配置了开机自动启动。如果要从开机启动的服务列表中删除,chkconfig --del myservice.

 

转载地址:http://desuo.baihongyu.com/

你可能感兴趣的文章
Ubuntu搜狗输入法候选词乱码
查看>>
js中回调函数写法
查看>>
React native android 最常见的10个问题
查看>>
数据结构和算法
查看>>
[pat]1045 Favorite Color Stripe
查看>>
Immutable学习及 React 中的实践
查看>>
OSI与TCP/IP各层的结构与功能,都有哪些协议
查看>>
Android实例-程序切换到后台及从后台切换到前台
查看>>
spring boot启动定时任务
查看>>
算法 (二分查找算法)
查看>>
java Date 当天时间戳处理
查看>>
linux常用命令-关机、重启
查看>>
iOS开发之调用系统设置
查看>>
javascript 字符串转数字的简便写法
查看>>
Spring中jdbcTemplate的用户实例
查看>>
DecimalFormat 数据格式设置 SimpleDateFormat时间格式的用法介绍 --转载
查看>>
Android 的Margin和Padding属性以及支持的长度单位
查看>>
Django templates加载css/js/image等静态资源
查看>>
caffe solver
查看>>
Rhel6-heartbeat+lvs配置文档
查看>>