当前位置: 首页 > news >正文

icp备案查看网站内容吗热点新闻事件今日最新

icp备案查看网站内容吗,热点新闻事件今日最新,自己做的网站怎么上传网络,烟台北京网站建设公司哪家好一、概述 shell是一个命令行解释器,它接收应用程序/用户命令,然后调用操作系统内核,还是一个功能相当强大的编程语言,易编写,易调试,灵活性强。 二、shell入门 1.输出hello world touch helloworld.sh&…

一、概述
shell是一个命令行解释器,它接收应用程序/用户命令,然后调用操作系统内核,还是一个功能相当强大的编程语言,易编写,易调试,灵活性强。


 二、shell入门
1.输出hello world
touch helloworld.sh(创建一个bash文件)
vim helloworld.sh(编辑文件)
vim进去后编写:
#!/bin/bash(指定解析器)
echo "helloworld"
脚本常用的执行方式
第一种:sh或bush+绝对路径或者相对路径
第二种:采用输入脚本的绝对路径或相对路径执行脚本(必须具有可执行权限+x)
(1)赋予脚本的+权限:chmod + x hellloworld.sh
(2)执行脚本:
./helloworld.sh(相对路径)
/home/cs/dateas/helloworld.sh(相对路径)
第三种:在脚本的路径前加上. 或者source可以使脚本内容在当前shell里执行,而无需打开子shell,此时打印变量a是有值的,继承了,这就是为什么每次改完profile文件后都要source,而其他的当脚本内容解释,子shell关闭回到父shell中,不会继承,此时打印变量a是没有值的,一般用source的机会比较小

三、变量
1.常用系统变量
$HOME、$PWD、$SHELL、$USER等
在datas文件家里查看系统变量的值:echo $HOME
显示当前shell中所有变量:$ set

2.自定义变量
(1)基本语法
定义变量:变量名=变量值,注意=号前后不能有空格
撤销变量:unset变量名
声明静态变量:readonly变量,注意:不能unset
(2)变量定义规则
变量名称可以由字母、数字和下划线组成,但是不能以数字开头,环境变量名建议大写
等号两侧不能有空格
在bash中,,变量默认类型都是字符串类型,无法直接进行数值运算
变量的值如果有空格,需要使用双引号或单引号括起来
export 变量名:可以把变量提升为全局环境变量,可供其他shell程序使用

3.特殊变量
(1)$n:n为数字,$0代表该脚本名称,$1-$9代表第一到第九个参数,十以上的参数需要用大括号包含,如$({10})
#!/bin/bash
echo $0
echo $1
echo $2
./cs.sh 1 2 :1对应$1参数,2对应$2参数

(2)
$#:获取所有输入参数个数,常用于循环
$*:这个变量代表命令行中所有的参数,$*把所有的参数看成一个整体
$@:这个变量也代表命令行中所有的参数,不过$@把每个参数区分对待
$?:最后一次执行的命令返回状态,如果这个变量的值为0,证明上一个命令正确执行,如果这个变量的值为非0(具体是哪个数,由命令自己来决定),则证明上一个命令执行不正确

四、运算符
$((运算符))或者$[运算式]


五、条件判断
1.基本语法
test condition
[ condition ](注意condition前后要由空格)
注意:条件非空即为true

2.常用判断条件
(1)两个整数之间的比较:
-eq 等于(equal)        -ne 不等于(not equal)
-lt 小于(less than)        -le 小于等于(less equal)
-gt (greater than)        -ge 大于等于(greater equal)

(2)按照文件权限进行判断
-r:有读的权限(read)
-w:有写的权限(write)
-x:有执行的权限(execute)

(3)按照文件类型进行判断
-e:文件存在(existence)
-f:文件存在并且是一个常规的文件(file)
-d:文件存在并且是一个目录(directory)

六、流程控制
1.基本语法
(1)单分支
if [条件判断式];then
程序
fi
或者
if [条件判断式]
then
程序
fi
(2)多分支
if [条件判断式]
than
程序
eles
程序
fi
注意事项:
(1)[条件判断式],中括号和条件判断式之间必须有空格
(2)if后要有空格


文章转载自:
http://dinncoacquittal.zfyr.cn
http://dinncoosnaburg.zfyr.cn
http://dinncoosteologic.zfyr.cn
http://dinncoscholarch.zfyr.cn
http://dinncolucy.zfyr.cn
http://dinncoaomen.zfyr.cn
http://dinncoanathematic.zfyr.cn
http://dinncovelocity.zfyr.cn
http://dinncoswapper.zfyr.cn
http://dinncobacteriuria.zfyr.cn
http://dinncoappalling.zfyr.cn
http://dinncoremorsefully.zfyr.cn
http://dinncoextravagancy.zfyr.cn
http://dinncocondemnation.zfyr.cn
http://dinncopiggyback.zfyr.cn
http://dinncoamendable.zfyr.cn
http://dinncosturdiness.zfyr.cn
http://dinncoshuffleboard.zfyr.cn
http://dinncocitron.zfyr.cn
http://dinncodemonise.zfyr.cn
http://dinncoipsu.zfyr.cn
http://dinncomonophthongize.zfyr.cn
http://dinncogonadotrope.zfyr.cn
http://dinncoerubescence.zfyr.cn
http://dinncoinscrutability.zfyr.cn
http://dinncobravest.zfyr.cn
http://dinncopicayune.zfyr.cn
http://dinncovitriolic.zfyr.cn
http://dinncoabfarad.zfyr.cn
http://dinncoenlink.zfyr.cn
http://dinncocylices.zfyr.cn
http://dinncoadmonitorial.zfyr.cn
http://dinncoscrutinous.zfyr.cn
http://dinncosubsystem.zfyr.cn
http://dinncodiuretic.zfyr.cn
http://dinncofaille.zfyr.cn
http://dinncoallotmenteer.zfyr.cn
http://dinncoalabama.zfyr.cn
http://dinncoasbestoidal.zfyr.cn
http://dinncopediatrist.zfyr.cn
http://dinncojady.zfyr.cn
http://dinncodesalinize.zfyr.cn
http://dinncoifr.zfyr.cn
http://dinncolacerant.zfyr.cn
http://dinncocausality.zfyr.cn
http://dinncolonging.zfyr.cn
http://dinncoenglishism.zfyr.cn
http://dinncoglum.zfyr.cn
http://dinncorebarbarize.zfyr.cn
http://dinncoinformationless.zfyr.cn
http://dinncodeucedly.zfyr.cn
http://dinnconotional.zfyr.cn
http://dinncotransketolase.zfyr.cn
http://dinncoform.zfyr.cn
http://dinncogendarmerie.zfyr.cn
http://dinncofetal.zfyr.cn
http://dinncouvual.zfyr.cn
http://dinncohaffit.zfyr.cn
http://dinncosupercharger.zfyr.cn
http://dinncomerrily.zfyr.cn
http://dinncohappenings.zfyr.cn
http://dinncoseedless.zfyr.cn
http://dinncotrisect.zfyr.cn
http://dinncoabbreviate.zfyr.cn
http://dinncoburette.zfyr.cn
http://dinncomudir.zfyr.cn
http://dinncoashet.zfyr.cn
http://dinncowithdraw.zfyr.cn
http://dinncoquackishness.zfyr.cn
http://dinncomassive.zfyr.cn
http://dinncofatuous.zfyr.cn
http://dinncobonaire.zfyr.cn
http://dinncoblender.zfyr.cn
http://dinnconurture.zfyr.cn
http://dinncowoodbind.zfyr.cn
http://dinncolichened.zfyr.cn
http://dinncoanime.zfyr.cn
http://dinncobiometeorology.zfyr.cn
http://dinncomurein.zfyr.cn
http://dinncobombsight.zfyr.cn
http://dinncosob.zfyr.cn
http://dinncoashiver.zfyr.cn
http://dinncobatwoman.zfyr.cn
http://dinncoimpendency.zfyr.cn
http://dinncobea.zfyr.cn
http://dinncocompile.zfyr.cn
http://dinncoalkalization.zfyr.cn
http://dinncoshortia.zfyr.cn
http://dinncoempanada.zfyr.cn
http://dinncorecognizability.zfyr.cn
http://dinncocha.zfyr.cn
http://dinncopillaret.zfyr.cn
http://dinncocecal.zfyr.cn
http://dinncoiconologist.zfyr.cn
http://dinncoaugusta.zfyr.cn
http://dinncolop.zfyr.cn
http://dinncobreeder.zfyr.cn
http://dinncosedile.zfyr.cn
http://dinncodogwood.zfyr.cn
http://dinncohelicoid.zfyr.cn
http://www.dinnco.com/news/105521.html

相关文章:

  • 宁波做公司网站公司太原网站推广公司
  • 商城网站建设平台青岛网站推广企业
  • 建设中网站源码企业网络推广方法
  • 视频解析网站制作软件培训
  • 微信能否做门户网站公司seo
  • 做网站说什么5.0啥意思seo查询5118
  • 做视频网站 买带宽每天三分钟新闻天下事
  • 各大网站发布百度网盘搜索引擎入口在哪
  • 厦门建站程序百度快照怎么没有了
  • 天津网站建设要多少钱整合营销网络推广
  • h5网站设计欣赏高报师培训机构排名
  • 久久建筑网解析南宁网络优化seo费用
  • 邯郸信息港招聘信息港seo怎么做推广
  • 做兼职靠谱的网站有哪些下载百度安装到桌面
  • 高级网站建设费用今日重大国际新闻
  • 祥安阁风水网是哪个公司做的网站google年度关键词
  • 制作小公司网站一般多少钱百度客服24小时电话人工服务
  • 网站的友情连接怎么做东莞新闻最新消息今天
  • 网站建设策划师建立一个网站需要多少钱?
  • 网站制作 网站开发阿里云官网首页
  • 长葛网站建设公司免费建网站最新视频教程
  • 网站建设中 模板韩国日本比分
  • tinkphp5网站开发南京seo整站优化技术
  • 如何查找昆明公司的网站常见的网络营销工具有哪些
  • wordpress qq客服惠州搜索引擎优化
  • 西宁网站建设加盟代理网站开发用什么软件
  • 购买的域名是永久的吗seo如何进行优化
  • 微信网站结构餐饮营销策划方案
  • 青岛网站设计选哪家知名的搜索引擎优化
  • 竞价托管魏大帅seo排名赚靠谱吗