shell编程实现菜单栏功能
这篇文章 主要介绍一下linux 系统中 shell编程完成菜单交互 的案例,我们应该怎么用shell编写菜单 思路: 首先 我们可以 cat 或者 echo 将要显示的菜单 输出大屏幕 其次,就是再写 控制语句的功能。 ### 第一步: 使用 cat或者echo将菜单输出到屏幕 #### 方法1 cat : #!/bin/bash cat<...
这篇文章 主要介绍一下linux 系统中 shell编程完成菜单交互 的案例,我们应该怎么用shell编写菜单 思路: 首先 我们可以 cat 或者 echo 将要显示的菜单 输出大屏幕 其次,就是再写 控制语句的功能。 ### 第一步: 使用 cat或者echo将菜单输出到屏幕 #### 方法1 cat : #!/bin/bash cat<...
shell 编程 case in 也可以说是shell switch case , 因为再其他编程语言中都有 switch 这个关键词。 先来说说 case in 吧 。 case流程判断 语法结构: case 变量 in 匹配序列1) 执行命令 ;; 匹配序列2) 执...
shell while true break 循环语句 是非常重要的, 这篇文章,就带大家认识一下:shell while true循环 ### 1)shell while true循环 [root@baimeidashu ~]#cat while.sh #!/bin/bash while true do echo 1111...
shell 编程中 文件判断 ### 1文件判断 语法结构: test 判断符 文件或者目录 \[ 判断符 文件或者目录 \] 判断符: -f 文件存在则为真 -d 目录存在则为真 -e 文件存在则为真(任意类型的文件) -r 文件可读为真 -w 文件可写为真 -x 文件可执行为真 test -f /etc/passwd &...
今天白眉无意间 不知道碰了哪个键,[vim](https://51tbox.com/ "View all posts in vim")编辑器 进入 REPLACE模式: ![](http://static.51tbox.com/static/2024-08-29/col/4481b4dca091cfda8d3c5d5e52c60c4c/e60565ad05...
案例: -d 如果目录不存在则创建 [ -d /etc ] && mkdir /opt/`hostname`_`date +%F` && tar zcvf /opt/`hostname`_`date +%F`/etc.tar.gz /etc #!/bin/bash [ -f /server/scripts/day...
这篇文章主要介绍 一下 shell if else语句嵌套的例子 很多初学者,或者刚接触 linux shell 编程的朋友 对shell if else elif 的语法 还不是很熟悉。 首先 shell中if else语法 有 2种 ,主要区别是 then 的位置。 ### (1) 第1种 if [ 表达式 成立 ]; then 执行的具体命...
变量的子串 ----- ### 1.变量的切片 (了解) 取出name中的 me [root@baimeidashu ~]#name='baimei' [root@baimeidashu ~]#echo ${name:2:3} ime ![](http://static.51tbox.com/static/2024-08-2...
shell编程中 整数比较 (1) test A -gt B test 10 -gt 4 && echo 正确 || echo 不正确 (2) \[ A -gt b\] (注意空格) [ 10 -gt 5 ]&& echo 正确 || echo 错误 ![](http://static.51tbox.com/static...
shell 变量的3中传参方式 ### (1)直接传参 sh test.sh a b ### (2) 赋值传参 #!/bin/bash name=$1 age=$2 ### (3)read 读入 #!/bin/bash read -p "请您输入您的姓名: " name read -...