博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spark修炼之道(基础篇)——Linux大数据开发基础:第十二节:Shell编程入门(四)...
阅读量:6087 次
发布时间:2019-06-20

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

本节主要内容

  1. shell脚本调试
  2. shell函数
  3. shell控制结构初步

1. shell脚本调试

当脚本出错时,需要对脚本进行调试,学会脚本调试是每个linux系统使用者必备技能。shell脚本调试无需任何额外的工具,只需要要在脚本文件前加-x选项即可,创建debug.sh文件,内容如下:

#!/bin/bash#Filename: debug.shecho "scripting"echo "debuging"ls +

使用bash -x 命令进行脚本调试

root@sparkslave02:~/ShellLearning/Chapter12# bash -x debug.sh + echo scriptingscripting+ echo debugingdebuging+ ls +ls: cannot access +: No such file or directory

-x选项将shell脚本每一行命令及执行结果打印输出,如此便能帮助开发人员快速定位到出错的脚本位置。如果代码量比较大或者脚本开发人员知道代码出错的大致位置,则可以使用set -x; set +x;命令进行局部调试,如

#!/bin/bash#Filename: debug2.shfor i in {
1..6}doset -x//set -x表示跟在该命令后的脚本输出调试信息echo $i//set +x表示从此处禁用调试set +xdoneecho "Script executed"

上面的代码意味着,只会打印输出echo $i,具体调试信息输出如下:

root@sparkslave02:~/ShellLearning/Chapter12# ./debug2.sh + echo 11+ set +x+ echo 22+ set +x+ echo 33+ set +x+ echo 44+ set +x+ echo 55+ set +x+ echo 66+ set +x

除bash -x命令进行脚本调试之外,还可以在脚本的第一行添加-xv命令,使得脚本默认进行调试,例如:

//加-xv选项,使脚本执行时会打印输出调试信息#!/bin/bash -xv#Filename: debug.shfor i in {
1..6}doset -xecho $iset +xdoneecho "Script executed"~

2. shell函数

同样,同c、c ++等编程语言一样,shell中可以定义函数,函数的定义格式如下

function fname(){   shell脚本语句;}

vim命令创建functionDemo.sh脚本文件

root@sparkslave02:~/ShellLearning/Chapter12# vim functionDemo.sh#定义一个函数fnamefunction fname(){   #输出第一个参数   echo $1   #输出函数所在文件名   echo $0   #输出所有参数   echo $@}#将函数中传入两个参数fname "arg1" "args"

执行结果:

root@sparkslave02:~/ShellLearning/Chapter12# ./functionDemo.sh arg1./functionDemo.sharg1 args

3. shell控制结构初步

同其它编程语言一样,shell也有自己的控制结构,包括for循环、while循环、until循环,if语句等。本小节先介绍for循环的使用,for循环的用法非常多,下面给出四个最为常用的for循环用法

(1)for i in $(seq 10)

root@sparkslave02:~/ShellLearning/Chapter12# vim forloop.shfor i in $(seq 10)doecho $idoneroot@sparkslave02:~/ShellLearning/Chapter12# chmod a+x forloop.sh root@sparkslave02:~/ShellLearning/Chapter12# ./forloop.sh 12345678910

(2) for((i=1;i<=10;i++))

for((i=2;i<=10;i++))doecho $idone

(3)for i in ls

root@sparkslave02:~/ShellLearning/Chapter12# vim forloop3.shfor i in `ls`doecho $idoneroot@sparkslave02:~/ShellLearning/Chapter12# chmod a+x forloop3.shroot@sparkslave02:~/ShellLearning/Chapter12# ./forloop3.sh debug2.shdebug.shforloop2.shforloop3.shforloop.shfunctionDemo.sh

(4)for i in ${arr[*]}

root@sparkslave02:~/ShellLearning/Chapter12# vim forloop4.sharr=(0 1 2 3)for i in ${
arr[*]}doecho ${
arr[i]}doneroot@sparkslave02:~/ShellLearning/Chapter12# ./forloop4.sh 0123

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

你可能感兴趣的文章
88城市周第二年:全国100城借移动支付打造智慧出行
查看>>
深入理解-Spring-之源码剖析IOC(一)
查看>>
美团点评上市受追捧,成中国第四大互联网企业
查看>>
【飞天存储服务月报】2018年7月刊
查看>>
centos 两种模式与linux互联
查看>>
环境变量与常用命令
查看>>
李锐:金龙客车DMS上云实践以及对网络、混合云、弹性、运维、安全的思考
查看>>
python面向对象
查看>>
Ember.js 入门指南——{{action}} 助手
查看>>
模仿ztree节点被点击&js删除数组/list元素
查看>>
Nginx正向代理
查看>>
rc.local
查看>>
非端口占用报错误java.net.BindException
查看>>
创建apk签名
查看>>
oracle数据库 wm_concat()函数学习笔记
查看>>
eclipse修改tomcat为本地运行
查看>>
单例模式的四种实现
查看>>
Oracle不同表空间下表的导入导出
查看>>
CentOs6.5基本环境配置(一):基本环境配置
查看>>
MyISAM动态
查看>>