
shell
qichengzong_right
我的耳朵,习惯了山间的寂静,被这些声音折磨得痛苦不堪。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
shell学习-环境变量
shell中查看,编辑环境变量原创 2024-10-30 08:24:28 · 292 阅读 · 0 评论 -
shell学习-条件分支
`if`,`switch`在shell中的使用,判断语句的书写原创 2024-10-30 08:23:32 · 846 阅读 · 0 评论 -
shell学习-操作符及表达式
shell中数学表达式的使用,常用的运算符使用原创 2024-10-30 08:22:45 · 161 阅读 · 0 评论 -
shell学习-循环逻辑处理
shell中循环语句使用for-in。原创 2024-10-30 08:22:14 · 202 阅读 · 0 评论 -
shell学习-参数处理
shell中循环语句使用 for-in语句 for var in list do commands done #!/bin/bash for str in a b c d e do echo $str done c风格for for (( i = 0; i <= 10; i++ )) do echo $i done while循环 while test...原创 2019-09-21 23:32:31 · 101 阅读 · 0 评论