51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

经验分享

shell编程实现菜单栏功能

shell编程实现菜单栏功能

厉飞雨 阅读(26) 评论(0) 赞(4)

这篇文章 主要介绍一下linux 系统中 shell编程完成菜单交互 的案例,我们应该怎么用shell编写菜单 思路: 首先 我们可以 cat 或者 echo 将要显示的菜单 输出大屏幕 其次,就是再写 控制语句的功能。 ### 第一步: 使用 cat或者echo将菜单输出到屏幕 #### 方法1 cat : #!/bin/bash cat<...

shell case语句

shell case语句

厉飞雨 阅读(23) 评论(0) 赞(5)

shell 编程 case in 也可以说是shell switch case , 因为再其他编程语言中都有 switch 这个关键词。 先来说说 case in 吧 。 case流程判断 语法结构: case 变量 in 匹配序列1) 执行命令 ;; 匹配序列2) 执...

shell while true break 循环语句 详解

shell while true break 循环语句 详解

厉飞雨 阅读(21) 评论(0) 赞(4)

shell while true break 循环语句 是非常重要的, 这篇文章,就带大家认识一下:shell while true循环 ### 1)shell while true循环 [root@baimeidashu ~]#cat while.sh #!/bin/bash while true do echo 1111...

shell 编程中- 文件判断- 字符串比较 -正则比较

shell 编程中- 文件判断- 字符串比较 -正则比较

厉飞雨 阅读(19) 评论(0) 赞(2)

shell 编程中 文件判断 ### 1文件判断 语法结构: test 判断符 文件或者目录 \[ 判断符 文件或者目录 \] 判断符: -f 文件存在则为真 -d 目录存在则为真 -e 文件存在则为真(任意类型的文件) -r 文件可读为真 -w 文件可写为真 -x 文件可执行为真 test -f /etc/passwd &...

vim replace

vim replace

厉飞雨 阅读(20) 评论(0) 赞(2)

今天白眉无意间 不知道碰了哪个键,[vim](https://51tbox.com/ "View all posts in vim")编辑器 进入 REPLACE模式: ![](http://static.51tbox.com/static/2024-08-29/col/4481b4dca091cfda8d3c5d5e52c60c4c/e60565ad05...

shell if else语句 详解

shell if else语句 详解

厉飞雨 阅读(21) 评论(0) 赞(3)

这篇文章主要介绍 一下 shell if else语句嵌套的例子 很多初学者,或者刚接触 linux shell 编程的朋友 对shell if else elif 的语法 还不是很熟悉。 首先 shell中if else语法 有 2种 ,主要区别是 then 的位置。 ### (1) 第1种 if [ 表达式 成立 ]; then 执行的具体命...

shell 变量的3中传参方式

shell 变量的3中传参方式

厉飞雨 阅读(17) 评论(0) 赞(1)

shell 变量的3中传参方式 ### (1)直接传参 sh test.sh a b ### (2) 赋值传参 #!/bin/bash name=$1 age=$2 ### (3)read 读入 #!/bin/bash read -p "请您输入您的姓名: " name read -...