网络运维Day10

文章目录

  • SHELL基础
    • 查看有哪些解释器
    • 使用usermod修改用户解释器
    • BASH基本特性
  • shell脚本的设计与运行
    • 编写问世脚本
    • 脚本格式规范
    • 执行shell脚本
      • 方法一
      • 方法二
      • 实验
  • 变量
    • 自定义变量
    • 环境变量
    • 位置变量
      • 案例
    • 预定义变量
  • 变量的扩展运用
    • 多种引号的区别
      • 双引号的应用
      • 单引号的应用
      • 反撇号或$()的应用
    • read命令定义变量
      • 案例
  • 条件测试
    • 字符串测试
    • 整数值比较
    • 运算
      • 常量与常量的比较
      • 常量与变量的比较
    • 文件状态的测试
  • 总结

SHELL基础

  • shell是用户与linux内核之间的解释器
  • shell环境准备,本实验需要用到一台虚拟机A即可

在这里插入图片描述

查看有哪些解释器

 [root@som ~]# cat /etc/shells                  #查看shell解释器

使用usermod修改用户解释器

[root@som ~]# usermod -s /bin/tcsh test		#使用usermod指令修改用户解释器
[root@som ~]# grep test /etc/passwd			#从/etc/passwd过滤test用户信息

BASH基本特性

查看

[root@som ~]# ls							#数据有颜色区分

重定向

在这里插入图片描述

覆盖重定向

[root@som ~]# ls  >  a.txt
[root@som ~]# cat  a.txt

追加重定向

[root@som ~]# ls  >>  a.txt
[root@som ~]# cat a.txt 

显示一个错误的文件

[root@som ~]# ls xxyyzz.txt
ls: 无法访问xxyyzz.txt: 没有那个文件或目录
[root@som ~]# ls xxyyzz.txt > b.txt                     #失败,> 收集正确信息
ls: 无法访问xxyyzz.txt: 没有那个文件或目录
[root@som ~]# ls xxyyzz.txt  2>  b.txt                  #正确,2> 收集错误信息
[root@som ~]# cat b.txt 
ls: 无法访问xxyyzz.txt: 没有那个文件或目录

收集正确和错误的信息

[root@som ~]# ls  a.txt  xxyzz.txt  >  b.txt
[root@som ~]# ls  a.txt  xxyzz.txt  &>  b.txt           #收集所有信息
[root@som ~]# cat b.txt 
ls: 无法访问xxyzz.txt: 没有那个文件或目录
a.      txt

管道

[root@som ~]# ifconfig | head -2                      #查看ip信息前两行

在这里插入图片描述

快捷键与Tab键补齐,常见快捷键如表所示

在这里插入图片描述

shell脚本的设计与运行

什么是shell脚本

  • Shell脚本是一种自动化执行任务的脚本语言,可以帮助我们完成日常任务,比如文件管理、进程管理等。
  • 脚本可以理解为功能性文件

编写问世脚本

[root@som ~]# mkdir -p /root/shell/day0{1..2}
[root@som ~]# vim /root/shell/day01/first.sh
echo "Hello World"
[root@som ~]# chmod  +x /root/shell/day01/first.sh          #添加执行权限
[root@som ~]# /root/shell/day01/first.sh                    #绝对路径形式执行
Hello World
[root@som ~]# cd /root/shell/day01/		  	  #切换目录
[root@som day01]# ./first.sh                  #相对路径执行
Hello World

脚本格式规范

  • 脚本声明(需要的解释器、作者信息等)
  • 注释信息(步骤、思路、用途、变量含义等)
  • 可执行语句(操作代码)

优化刚刚的first.sh脚本

[root@som day01]# vim /root/shell/day01/first.sh
#!/bin/bash                            #指定解释器
#This a test program for shell.        #这是一个测试性的程序
echo "Hello World"
[root@som day01]# ./first.sh		   #执行脚本

执行shell脚本

执行脚本的多种方式

在这里插入图片描述

方法一

脚本在执行的时候要有执行(x)权限,否则会报错

[root@som day01]# chmod -x first.sh 
[root@som day01]# ./first.sh                     #报错
-bash: ./first.sh: 权限不够
[root@som day01]# /root/shell/day01/first.sh     #报错
-bash: /root/shell/day01/first.sh: 权限不够

方法二

不需要文件有可执行权限,指定解释器执行脚本

[root@som day01]# sh first.sh       		#指定sh来执行first.sh
[root@som day01]# bash first.sh  			#指定bash解释器执行first.sh

实验

[root@som day01]# vim tmp.sh				#编写tmp.sh
#!/bin/bash
exit
[root@som day01]# sh tmp.sh        			#指定运行脚本,没有关闭终端
[root@som day01]# vim tmp.sh				#编写tmp.sh
#!/bin/bash
exit
[root@som day01]# source  tmp.sh			#执行tmp.sh,会关闭终端

总结:

  • 指定解释器会新开子进程
  • 使用source不会新开子进程

变量

自定义变量

  • 环境变量(变量名通常大写,有操作系统维护)
  • 位置变量(bash内置变量,存储脚本执行时的参数)
  • 预定义变量(bash内置变量,可以调用但是不能赋值或修改)
  • 自定义变量(用户自主设置)

定义变量

  • 可以是数字,字母,下划线
  • 变量名不能使用特殊符号,会报错
  • 不能以数字开头

查看变量

  • echo ${变量名}
  • echo $变量名

定义变量

[root@som ~]# a=11
[root@som ~]# echo $a           	#调用变量,查看变量的值
[root@som ~]# a=33              	#变量名已经存在,再次赋值,里面的内容会被覆盖
[root@som ~]# echo $a			 	#调用变量,查看变量的值
[root@som ~]# a)=11					#变量包含特殊符号,所以定义失败
-bash: 未预期的符号 `)' 附近有语法错误	
[root@som ~]# 3a=33					#变量数字开头,所以定义失败
bash: 3a=33: 未找到命令...
[root@som ~]# a_0=11				#没有违规,所以成功
[root@som ~]# _a=11					#没有违规,所以成功
[root@som ~]# _0=11					#没有违规,所以成功
[root@som ~]# x=CentOS
[root@som ~]# echo $x           	#成功
[root@som ~]# echo ${x}        		#成功

若想要显示CentOS7.9

[root@som ~]# echo $x7.9          	#失败,会显示.9,此时是把$x7看成一个变量名

加上{}可以成功

[root@som ~]# echo ${x}7.9			#输出CentOS7.9
[root@som ~]# echo ${x}7.6			#输出CentOS7.6

取消变量

[root@som ~]# unset x					#取消变量
[root@som ~]# echo $x

环境变量

  • 存储在/etc/profile或~/.bash_profile
  • 命令env可以列出所有环境变量
  • 环境变量通常是大写字母
[root@som ~]# echo $PATH             	#命令搜索的路径变量
[root@som ~]# echo $PWD             	#返回当前工作目录
/root
[root@som ~]# echo $USER            	#显示当前登录的用户
root
[root@som ~]# echo $UID               	#显示当前用户的uid
0
[root@som ~]# echo $HOME          		#显示当前用户的家目录
/root
[root@som ~]# echo $SHELL           	#显示当前的SHELL
/bin/bash 

位置变量

  • 存储脚本时执行的参数
  • $1 $2 $3 …$9 ${10} ${11} … #从10开始位置变量需要加{}
[root@som ~]# vim /root/shell/day01/vars.sh
#!/bin/bash
echo $1
echo $2
echo $3
[root@som ~]# chmod +x /root/shell/day01/vars.sh 
[root@som ~]# /root/shell/day01/vars.sh aa bb cc       #执行脚本,传递参数
aa
bb
cc

案例

  • 编写一个user.sh脚本,使用它创建用户
[root@som ~]# vim /root/shell/day01/user.sh
#!/bin/bash
useradd "$1"						#创建用户
echo "$2" | passwd --stdin $1		#设置密码
[root@som ~]# chmod +x /root/shell/day01/user.sh
[root@som ~]# /root/shell/day01/user.sh tom 123			#执行脚本
[root@som ~]# /root/shell/day01/user.sh jim 123			#执行脚本

预定义变量

  • 用来保存脚本程序的执行信息,可以直接使用这些变量,但是不能为这些变量赋值

在这里插入图片描述

$?:执行上一条命令的返回状态,0为正确,非0为错误

[root@som ~]# ls /etc/hosts				#执行命令成功
/etc/hosts
[root@som ~]# echo $?           		#返回值为0,正确
0
[root@som ~]# ls /xxxxxyyyy     		#执行命令错误    	
ls: 无法访问/xxxxxyyyy: 没有那个文件或目录
[root@som ~]# echo $?					#返回值为非0,失败
2

其他几个预定义变量的测试

[root@som ~]# vim /root/shell/day01/pre.sh
#!/bin/bash
echo $0             #执行脚本的名字
echo $$             #当前脚本的进程号
echo $#             #位置变量的个数
echo $*             #所有位置变量
[root@som7 ~]# chmod  +x /root/shell/day01/pre.sh
[root@som7 ~]# /root/shell/day01/pre.sh  a b c d
/root/shell/day01/pre.sh
46608
4
a b c d

变量的扩展运用

多种引号的区别

双引号的应用

  • 使用双引号可以界定一个完整字符串
[root@som ~]# touch a b c            	#创建了三个文件
[root@som ~]# touch "a b c"           	#创建1一个文件
[root@som ~]# ls -l
[root@som ~]# rm -rf  a b c           	#删除三个文件
[root@som ~]# rm -rf  "a b c"       	#删除一个文件

单引号的应用

  • 界定一个完整的字符串,并且可以实现屏蔽特殊符号的功能。
  • 当双引号里面有变量时,会被扩展出来,也就是会取变量的值
[root@som ~]# hi="world"
[root@som ~]# echo "$hi"               #成功
world
[root@som ~]# echo '$hi'               #失败,当成一个字符串
$hi

当没有特殊符号时,单引号和双引号的含义是一样的

[root@som ~]# touch "a b c"			
[root@som ~]# touch 'c d e'

练习单引号和双引号的区别

[root@som ~]# echo "$USER id is $UID"	#调用变量
root id is 0
[root@som ~]# echo '$USER id is $UID'	#不调用变量
$USER id is $UID

反撇号或$()的应用

  • 使用反撇号``或$()时,可以将命令执行的标准输出作为字符串存储,因此称为命令替换。
[root@som ~]# grep root /etc/passwd
[root@som ~]# test=`grep root /etc/passwd`		#定义变量,内容为命令输出结果
[root@som ~]# echo $test
[root@som ~]# test2=$(grep root /etc/passwd)	#定义变量,内容为命令输出结果
[root@som ~]# echo $test2

read命令定义变量

  • 使用read命令从键盘读取变量值
    • -p: 指定提示信息
    • -s: 屏蔽输入(键盘输入内容,在屏幕上不显示)
    • -t: 可指定超时秒数(指定秒数不输入,直接退出)

read基本用法

  • 执行后从会等待并接受用户输入(无任何提示的情况),并赋值给变量:
[root@som ~]# read iname					#定义变量iname
123											#从键盘输入123作为iname的值
[root@som ~]# echo $iname					#输出变量iname
123

虽然可以赋值。但是屏幕上没有任何提示信息,在未来写脚本的时候不太方便,可以加上-p选项,给出提示

[root@som ~]# read -p "请输入用户名:" iname	#定义变量
请输入用户名:tom
[root@som ~]# echo $iname					 #输出变量
tom

案例

创建一个脚本,通过read定义变量创建用户,更改密码

[root@som ~]# vim /root/shell/day01/read.sh
#!/bin/bash
read -p "请输入用户名:" name
read -p "请输入密码:"   pass
useradd $name
echo "$pass" | passwd --stdin $name
[root@som ~]# chmod +x /root/shell/day01/read.sh
[root@som ~]# /root/shell/day01/read.sh 
请输入用户名:user2
请输入密码:a
更改用户 user2 的密码 。
passwd:所有的身份验证令牌已经成功更新。

但是此时密码是名为显示的,不安全,可以使用-s参数,不显示终端输入的信息

[root@som ~]# vim /root/shell/day01/read.sh
read -p "请输入用户名:" name
read -s -p "请输入密码:"   pass
useradd $name
echo "$pass" | passwd --stdin $name
[root@som ~]# /root/shell/day01/read.sh 
请输入用户名:user3
请输入密码:
更改用户 user3 的密码 。
passwd:所有的身份验证令牌已经成功更新。
[root@som ~]# read -t 3 iname               #3秒不输入直接退出

条件测试

  • 语法格式:使用 [ 表达式 ],表达式两边至少要留一个空格。

字符串测试

  • 是否为空 [ -z 字符串 ]
[root@som ~]# echo $TT
[root@som ~]# [ -z $TT ]         		#T为空吗
[root@som ~]# echo $?           		#是,返回值为0
0
[root@som ~]# TT="hello"
[root@som ~]# [ -z $TT ]         		#T为空吗
[root@som ~]# echo $?           		#否,返回值非0
1

等于:[ 字符串1 == 字符串2 ]

[root@som ~]# [ a == a ]				#判断a==a
[root@som ~]# echo $?           		#查看返回值
0
[root@som ~]# [ a == c ]				#判断a==c
[root@som ~]# echo $?					#查看返回值
1

变量和常量的判断

[root@som ~]# [ $USER == root ]			#环境变量USER的值是root吗
[root@som ~]# echo $?
0
[root@som ~]# [ $USER == tom ]			#环境变量USER的值是tom吗
[root@som ~]# echo $?
1

不等于:[ 字符串1 != 字符串2 ]

[root@som ~]# [   $USER != tom   ]			#环境变量USER的值不是tom
[root@som ~]# echo $?
0

整数值比较

格式:[ 整数值1 操作符 整数值2 ]

  • -eq:等于
  • -ne:不等于
  • -gt:大于
  • -ge:大于等于
  • -lt:小于
  • -le:小于等于

参与比较的必须是整数(可以调用变量),比较非整数值时会出错

运算

四则运算:+ - * /

求模取余:%

计算练习

[root@som ~]# echo $[1+1]					#计算1+1
[root@som ~]# echo $[10-2]					#计算10-2
[root@som ~]# echo $[2*2]					#计算2*2
[root@som ~]# echo $[6/3]					#计算6/3
[root@som ~]# echo $[10%3]					#取10/3的余数

变量计算

[root@som ~]# a=10
[root@som ~]# b=20
[root@som ~]# echo $[a+b]					#计算变量a+变量b

常量与常量的比较

小于

[root@som ~]# [ 3 -lt 8 ]
[root@som ~]# echo $?
0

大于

[root@som ~]# [ 3 -gt 2 ]
[root@som ~]# echo $?
0

等于

[root@som ~]# [ 3 -eq 3 ]
[root@som ~]# echo $?
0

小于等于

[root@som ~]# [ 3 -le 3 ]
[root@som ~]# echo $?
0

大于等于

[root@som ~]# [ 3 -ge 1 ]
[root@som ~]# echo $?
0

常量与变量的比较

判断计算机登录的用户

[root@som ~]# who | wc -l
[root@som ~]# [ $(who | wc -l)  -ge  2 ]
[root@som ~]# echo $?
0

文件状态的测试

  • 格式:[ 操作符 文件或目录 ]
  • -e:判断对象是否存在(不管是目录还是文件),存在则结果为真
[root@som ~]# [ -e /etc ]
[root@som ~]# echo $?
0
[root@som ~]# [ -e /etc/hosts ]
[root@som ~]# echo $?
0
[root@som ~]# [ -e /etc/xxyy ]
[root@som ~]# echo $?
1
  • -d:判断对象是否为目录(存在且是目录),是则为真
[root@som ~]# [ -d /etc/hosts ]
[root@som ~]# echo $?
1
[root@som ~]# [ -d /etc/ ]
[root@som ~]# echo $?
0
  • -f:判断对象是否为文件(存在且是文件)是则为真
[root@som ~]# [ -f /etc/ ]
[root@som ~]# echo $?
1
[root@som ~]# [ -f /etc/hosts ]
[root@som ~]# echo $?
0
  • -r:判断对象是否可读,是则为真
[root@som ~]# ls -l  /etc/hosts
-rw-r--r--. 1 root root 158 67 2013 /etc/hosts
[root@som ~]# [ -r /etc/hosts ]
[root@som ~]# echo $?
0
  • -w:判断对象是否可写,是则为真
[root@som ~]# [ -w /etc/hosts ]
[root@som ~]# echo $?
0
  • -x:判断对象是否具有可执行权限,是则为真
[root@som ~]# [ -x /etc/hosts ]
[root@som ~]# echo $?
1

总结

  • 掌握SHELL脚本执行流程
  • 掌握SHELL中的变量
    • 自定义变量
    • 环境变量
    • 位置变量
    • 预定义变量
  • 掌握SHELL中条件测试

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/139114.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【机器学习范式】监督学习,无监督学习,强化学习, 半监督学习,自监督学习,迁移学习,对比分析+详解与示例代码

目录 1. 监督学习 (Supervised Learning): 2. 无监督学习 (Unsupervised Learning): 3. 强化学习 (Reinforcement Learning): 4. 半监督学习 (Semi-Supervised Learning): 5. 自监督学习 (Self-Supervised Learning): 6. 迁移学习 (Transfer Learning): 7 机器学习范式应…

Git可视化界面的操作,SSH协议的以及IDEA集成Git

目录 一. Git可视化界面的操作 二. gitee的ssh key 2.1 SSH协议 2.2 ssh key 三. IDEA集成Git 3.1 分享项目 3.2 下载项目 一. Git可视化界面的操作 上一篇博客只用到了git的命令窗口,现在就来看看可视化窗口要怎么操作。 点击Git GUI Here GUI界面 在g…

ceph-deploy bclinux aarch64 ceph 14.2.10

ssh-copy-id,部署机免密登录其他三台主机 所有机器硬盘配置参考如下,计划采用vdb作为ceph数据盘 下载ceph-deploy pip install ceph-deploy 免密登录设置主机名 hostnamectl --static set-hostname ceph-0 .. 3 配置hosts 172.17.163.105 ceph-0 172.…

HTML使用lable将文字与控件进行关联以获取焦点

先养养眼再往下看 注释很详细&#xff0c;直接上代码 <form action""><!-- 第一种方法:用id的方式绑定账户(文字)和输入框 --><label for"zhanghu">账户</label><input "text" id"zhanghu" name"ac…

Python环境安装、Pycharm开发工具安装(IDE)

Python下载 Python官网 Python安装 Python安装成功 Pycharm集成开发工具下载&#xff08;IDE&#xff09; PC集成开发工具 Pycharm集成开发工具安装&#xff08;IDE&#xff09; 安装完成 添加环境变量&#xff08;前面勾选了Path不用配置&#xff09; &#xff08;1&…

NO.304 二维区域和检索 - 矩阵不可变

题目 给定一个二维矩阵 matrix&#xff0c;以下类型的多个请求&#xff1a; 计算其子矩形范围内元素的总和&#xff0c;该子矩阵的 左上角 为 (row1, col1) &#xff0c;右下角 为 (row2, col2) 。 实现 NumMatrix 类&#xff1a; NumMatrix(int[][] matrix) 给定整数矩阵 …

JS实现数据结构与算法

队列 1、普通队列 利用数组push和shif 就可以简单实现 2、利用链表的方式实现队列 class MyQueue {constructor(){this.head nullthis.tail nullthis.length 0}add(value){let node {value}if(this.length 0){this.head nodethis.tail node}else{this.tail.next no…

LLM代码生成器的挑战【GDELT早期观察】

越来越多的研究开始对LLM大模型生成的代码的质量提出质疑&#xff0c;尽管科技行业不断推出越来越多的旨在增强甚至取代人类编码员的工具。 随着我们&#xff08;GDELT&#xff09;继续探索和评估越来越多的此类工具&#xff0c;以下是我们的一些早期观察结果。 在线工具推荐&a…

linux安装git

目录 声明 前言 正文 &#xff08;1&#xff09;下载git压缩包 &#xff08;2&#xff09;git压缩包解压 &#xff08;3&#xff09;解压完成后需要进行源码的编译操作 a.首先进去到解压后的文件目录中&#xff1a; b.执行&#xff1a; 编译的过程中可能遇到的问题&am…

【狂神说Java】Dubbo + Zookeeper

✅作者简介&#xff1a;CSDN内容合伙人、信息安全专业在校大学生&#x1f3c6; &#x1f525;系列专栏 &#xff1a;狂神说Java &#x1f4c3;新人博主 &#xff1a;欢迎点赞收藏关注&#xff0c;会回访&#xff01; &#x1f4ac;舞台再大&#xff0c;你不上台&#xff0c;永远…

跨域:利用JSONP、WebSocket实现跨域访问

跨域基础知识点&#xff1a;跨域知识点 iframe实现跨域的四种方式&#xff1a;http://t.csdnimg.cn/emgFr 注&#xff1a;本篇中使用到的虚拟主机也是上面iframe中配置的 目录 JSONP跨域 JSONP介绍 跨域实验&#xff1a; WebSocket跨域 websocket介绍 跨域实验 JSONP跨域…

javaSE学习笔记(五)集合框架-Collection,List,Set,Map,HashMap,Hashtable,ConcurrentHashMap

目录 四、集合框架 1.集合概述 集合的作用 集合和数组的区别 集合继承体系 数组和链表 数组集合 链表集合 2.Collection 方法 集合遍历 并发修改异常 3.List List集合的特有功能&#xff08;核心是索引&#xff09; 集合遍历 并发修改异常产生解决方案ListIterato…

PowerPoint to HTML5 SDK Crack

Convert PowerPoint to HTML5 Retaining Animations, Transitions, Hyperlinks, Smartart, Triggers and other multimedia effects World’s first and industry best technology for building web/mobile based interactive presentations directly from PowerPoint – that …

在Win11中使用docker安装Oracle19c

在Win11中使用docker安装Oracle19c 首先是去docker官网下 docker for windows安装oracle19c首先下载image运行镜像在工具中登录可能遇到的问题 首先是去docker官网下 docker for windows 官网&#xff1a; https://www.docker.com/get-started/ 如果Windows是专业版&#xff0…

HTML跳转锚点

跳转锚点适用于本页面和其他页面的任意标签的跳转以及JavaScript的运行 使用方法即给标签加上独一无二的id属性&#xff0c;再使用a标签跳转 如果是其他页面的标签只需加上其他页面的路径&#xff0c;eg.href"其他页面的路径#zp1" id属性的最好不要使用数字开头 <…

第 117 场 LeetCode 双周赛题解

A 给小朋友们分糖果 I 动态规划&#xff1a;设 p [ k ] [ i ] p[k][i] p[k][i] 为将 i i i 个糖果分给 k k k 个小朋友的方案数&#xff0c;先求 p [ 2 ] [ i ] p[2][i] p[2][i] &#xff0c;再求 p [ 3 ] [ n ] p[3][n] p[3][n] class Solution { public:using ll long …

CH11_重构API

将查询函数和修改函数分离&#xff08;Separate Query from Modifier&#xff09; function getTotalOutstandingAndSendBill() {const result customer.invoices.reduce((total, each) > each.amount total, 0);sendBill();return result; }function totalOutstanding() …

写在 Chappyz 即将上所之前:基于 AI 技术对 Web3 营销的重新定义

前不久&#xff0c;一个叫做 Chappyz 的项目&#xff0c;其生态代币 $CHAPZ 在 Seedify、Poolz、Decubate、ChainGPT、Dao Space 等几大 IDO 平台实现了上线后几秒售罄&#xff0c;并且 Bitget、Gate.io、PancakeSwap 等几大平台也纷纷表示支持&#xff0c;并都将在 11 月 13 日…

关于el-table+el-input+el-propover的封装

一、先放图片便于理解 需求&#xff1a; 1、el-input触发focus事件&#xff0c;弹出el-table(当然也可以为其添加搜索功能、分页) 2、el-table中的复选共能转化成单选共能 3、选择或取消的数据在el-input中动态显示 4、勾选数据后&#xff0c;因为分页过多&#xff0c;原先选好…

【Linux网络】系统调优之聚合链路bonding,可以实现高可用和负载均衡

一、什么是多网卡绑定 二、聚合链路的工作模式 三、实操创建bonding设备&#xff08;mode1&#xff09; 1、实验 2、配置文件解读 3、查看bonding状态,验证bonding的高可用效果 三、nmcli实现bonding 一、什么是多网卡绑定 将多块网卡绑定同一IP地址对外提供服务&#xf…