当前位置: 首页 > news >正文 成都企业网站建设费用重庆网站有哪些 news 2025/11/4 12:10:06 成都企业网站建设费用,重庆网站有哪些,企业网站营销的优缺点及案例,做电子书下载网站会不会侵权以下内容源于C语言中文网的学习与整理#xff0c;如有侵权#xff0c;请告知删除。 一、退出状态 #xff08;1#xff09;不管是 Bash 内置命令#xff0c;还是外部的 Linux 命令#xff0c;还是自定义的 Shell 函数#xff0c;当它运行结束或者退出时#xff0c;都…以下内容源于C语言中文网的学习与整理如有侵权请告知删除。 一、退出状态 1不管是 Bash 内置命令还是外部的 Linux 命令还是自定义的 Shell 函数当它运行结束或者退出时都会返回一个比较小的整数值给调用它的程序这个整数值就表示命令的退出状态。 很多 Linux 命令其实就是一个C语言程序熟悉C语言的读者都知道main() 函数的最后都有一个return 0如果程序想在中间退出还可以使用exit 0这其实就是C语言程序的退出状态。当有其它程序调用这个程序时就可以捕获这个退出状态。 2在 Shell 中有多种方式取得命令的退出状态其中 $?是最常见的一种。 xjhubuntu:~/iot/tmp$ cat test.sh #!/bin/bashread a read b(( $a $b ));echo 退出状态$? xjhubuntu:~/iot/tmp$ ./test.sh 33 33 退出状态0 xjhubuntu:~/iot/tmp$ ./test.sh 23 45 退出状态1 xjhubuntu:~/iot/tmp$ 3if 语句的判断条件从本质上讲判断的就是命令的退出状态。注意Shell中退出状态为 0 表示“成功”、“真”即程序执行完成并且没有遇到任何问题除 0 以外的其它任何退出状态都为“失败”、“假”。注意这正好与C语言的规定相反在C语言中0 表示“假”其它值表示“真”。 如果shell中一个命令比如判断大小成立则其返回值为0而shell中的if也是命令返回值为0时才成立这样一来我们就可以只根据命令比如大小关系是否正确来判断if是否执行了所谓“负负得正”不用再绕弯子先去判断命令的返回值然后再根据if只在返回值为0时才成立。比如下面代码中直接看 $a是否等于$b即可。 xjhubuntu:~/iot/tmp$ cat test.sh #!/bin/bashread a read bif (( $a $b )) # a33b33时由上面可知(( $a $b ))退出的状态为0表示成功、真 # 此时if根据退出的状态为真then后面的内容得以执行# 或者直接看 $a是否等于$b即可。 thenecho a和b相等 fi xjhubuntu:~/iot/tmp$ ./test.sh 33 33 a和b相等 xjhubuntu:~/iot/tmp$ 二、退出状态和逻辑运算符的组合 1在if语句中我们可以使用逻辑运算符将多个退出状态组合起来一次判断多个条件。 Shell 逻辑运算符运算符使用格式说明if expression1 expression2逻辑与运算符当 expression1 和 expression2 同时成立时整个表达式才成立。 如果检测到 expression1 的退出状态为1表示失败就不会再检测 expression2 了因为不管 expression2 的退出状态是什么整个表达式必然都是不成立的检测了也是多此一举。||if expression1 || expression2逻辑或运算符expression1 和 expression2 两个表达式中只要有一个成立整个表达式就成立。 如果检测到 expression1 的退出状态为 0表示成功就不会再检测 expression2 了因为不管 expression2 的退出状态是什么整个表达式必然都是成立的检测了也是多此一举。!if !expression逻辑非运算符相当于“取反”的效果。如果 expression 成立那么整个表达式就不成立如果 expression 不成立那么整个表达式就成立。 2举例将用户输入的 URL 写入到文件中。下面代码中test 是 Shell 内置命令可以对文件或者字符串进行检测其中-w选项用来检测文件是否存在并且可写-n选项用来检测字符串是否非空。表示重定向默认情况下echo 向控制台输出这里我们将输出结果重定向到文件。 xjhubuntu:~/iot/tmp$ cat test.sh #!/bin/bashread filename read urlif test -w $filename test -n $url thenecho $url $filenameecho 写入成功 elseecho 写入失败 fi xjhubuntu:~/iot/tmp$ ./test.sh test.txt http://www.baidu.com.cn 写入失败 xjhubuntu:~/iot/tmp$ touch test.txt xjhubuntu:~/iot/tmp$ ls test1.sh test2.sh test.sh test.txt xjhubuntu:~/iot/tmp$ ./test.sh test.txt http://www.baidu.com.cn 写入成功 xjhubuntu:~/iot/tmp$ xjhubuntu:~/iot/tmp$ test -w test.txt xjhubuntu:~/iot/tmp$ echo $? 0 xjhubuntu:~/iot/tmp$ test -w test.c xjhubuntu:~/iot/tmp$ echo $? 1 xjhubuntu:~/iot/tmp$ 文章转载自: http://www.morning.wnbqy.cn.gov.cn.wnbqy.cn http://www.morning.ntzbr.cn.gov.cn.ntzbr.cn http://www.morning.lmdkn.cn.gov.cn.lmdkn.cn http://www.morning.jcyrs.cn.gov.cn.jcyrs.cn http://www.morning.fbrshjf.com.gov.cn.fbrshjf.com http://www.morning.lkmks.cn.gov.cn.lkmks.cn http://www.morning.lmrjn.cn.gov.cn.lmrjn.cn http://www.morning.cmzgt.cn.gov.cn.cmzgt.cn http://www.morning.rwzmz.cn.gov.cn.rwzmz.cn http://www.morning.xflzm.cn.gov.cn.xflzm.cn http://www.morning.jnrry.cn.gov.cn.jnrry.cn http://www.morning.zbtfz.cn.gov.cn.zbtfz.cn http://www.morning.rjmb.cn.gov.cn.rjmb.cn http://www.morning.rkdzm.cn.gov.cn.rkdzm.cn http://www.morning.lwrcg.cn.gov.cn.lwrcg.cn http://www.morning.skksz.cn.gov.cn.skksz.cn http://www.morning.ljbm.cn.gov.cn.ljbm.cn http://www.morning.jtnph.cn.gov.cn.jtnph.cn http://www.morning.jtjmz.cn.gov.cn.jtjmz.cn http://www.morning.qbxdt.cn.gov.cn.qbxdt.cn http://www.morning.bfhrj.cn.gov.cn.bfhrj.cn http://www.morning.qytby.cn.gov.cn.qytby.cn http://www.morning.gzttoyp.com.gov.cn.gzttoyp.com http://www.morning.nzsx.cn.gov.cn.nzsx.cn http://www.morning.mhpkz.cn.gov.cn.mhpkz.cn http://www.morning.lwrks.cn.gov.cn.lwrks.cn http://www.morning.gsksm.cn.gov.cn.gsksm.cn http://www.morning.dsgdt.cn.gov.cn.dsgdt.cn http://www.morning.ykwgl.cn.gov.cn.ykwgl.cn http://www.morning.wblpn.cn.gov.cn.wblpn.cn http://www.morning.newfeiya.com.cn.gov.cn.newfeiya.com.cn http://www.morning.btypn.cn.gov.cn.btypn.cn http://www.morning.dpnhs.cn.gov.cn.dpnhs.cn http://www.morning.lwygd.cn.gov.cn.lwygd.cn http://www.morning.qqhmg.cn.gov.cn.qqhmg.cn http://www.morning.xwgbr.cn.gov.cn.xwgbr.cn http://www.morning.mnkz.cn.gov.cn.mnkz.cn http://www.morning.ykrkq.cn.gov.cn.ykrkq.cn http://www.morning.nwfxp.cn.gov.cn.nwfxp.cn http://www.morning.rhkq.cn.gov.cn.rhkq.cn http://www.morning.clqpj.cn.gov.cn.clqpj.cn http://www.morning.qgghr.cn.gov.cn.qgghr.cn http://www.morning.csnmd.cn.gov.cn.csnmd.cn http://www.morning.jkmjm.cn.gov.cn.jkmjm.cn http://www.morning.rcmcw.cn.gov.cn.rcmcw.cn http://www.morning.fdmfn.cn.gov.cn.fdmfn.cn http://www.morning.kxqwg.cn.gov.cn.kxqwg.cn http://www.morning.qytby.cn.gov.cn.qytby.cn http://www.morning.ntlxg.cn.gov.cn.ntlxg.cn http://www.morning.zpdjh.cn.gov.cn.zpdjh.cn http://www.morning.fyglr.cn.gov.cn.fyglr.cn http://www.morning.bplqh.cn.gov.cn.bplqh.cn http://www.morning.ldwxj.cn.gov.cn.ldwxj.cn http://www.morning.yrjhr.cn.gov.cn.yrjhr.cn http://www.morning.kjjbz.cn.gov.cn.kjjbz.cn http://www.morning.tfbpz.cn.gov.cn.tfbpz.cn http://www.morning.rbzd.cn.gov.cn.rbzd.cn http://www.morning.fyglr.cn.gov.cn.fyglr.cn http://www.morning.nclps.cn.gov.cn.nclps.cn http://www.morning.sjsks.cn.gov.cn.sjsks.cn http://www.morning.bjndc.com.gov.cn.bjndc.com http://www.morning.pkrtz.cn.gov.cn.pkrtz.cn http://www.morning.kwnbd.cn.gov.cn.kwnbd.cn http://www.morning.nwpnj.cn.gov.cn.nwpnj.cn http://www.morning.lmqfq.cn.gov.cn.lmqfq.cn http://www.morning.bqyb.cn.gov.cn.bqyb.cn http://www.morning.fssmx.com.gov.cn.fssmx.com http://www.morning.mlwhd.cn.gov.cn.mlwhd.cn http://www.morning.mfmx.cn.gov.cn.mfmx.cn http://www.morning.swzpx.cn.gov.cn.swzpx.cn http://www.morning.tgtwy.cn.gov.cn.tgtwy.cn http://www.morning.jklns.cn.gov.cn.jklns.cn http://www.morning.prgdy.cn.gov.cn.prgdy.cn http://www.morning.dfckx.cn.gov.cn.dfckx.cn http://www.morning.jmllh.cn.gov.cn.jmllh.cn http://www.morning.yrccw.cn.gov.cn.yrccw.cn http://www.morning.ptlwt.cn.gov.cn.ptlwt.cn http://www.morning.fmqng.cn.gov.cn.fmqng.cn http://www.morning.zkqwk.cn.gov.cn.zkqwk.cn http://www.morning.rfrx.cn.gov.cn.rfrx.cn 查看全文 http://www.tj-hxxt.cn/news/276525.html 相关文章: wordpress建站简单吗成都网架公司 外贸网站建设推广培训黄骅港邮政编码 什么是网站什么是网页国际旅游网站设计报告 ipad网站开发如何在手机上制作网站 大连网站运营制作方案中国空间站科幻作文1000字 5050众筹网站开发手机网站使用微信支付 提供东莞网站制作公司vs2012做网站 学网站开发多久个人搭建网站 网站建设销售要懂什么坪山公司网站建设 多终端网站开发织梦wap网站模版 深圳高端网站定制建设校园微网站建设方案ppt模板 做解析视频网站怎么赚钱辽宁建设工程信息网分数 做公司网站需要注意哪些软件商店打不开怎么办 鲜花网站建设策划书国内网站免备案 网站建设价格套餐linux网站架设怎么做 上海网站设计案例当涂 微网站开发公司 有哪些基于网站开发的报表设计器建立大型网站吗 平面设计服务方案上海网站建设优化公司 网站开发技术参考文献网站建设团队介绍 企业网站优化费用ps软件下载手机版免费 怎么在后台设置网站的关键词wordpress主开发 网站不在首页显示出来吗91福利社区wordpress 哪个网站做原创歌曲投票小程序制作 抚顺网站推广成都诗和远方网站建设 做响应式网站字体需要响应么wordpress wortd godaddy中文网站开发东莞松山湖邮编 天翼云主机怎么建设网站四大战略咨询公司 网站建设公众号开加快政务网站建设 网站视频怎么做的好处专业网站开发费用 毕设做购物网站系统的原因常见的网页编辑工具有哪些