上一页 1 ··· 394 395 396 397 398 399 400 401 402 ··· 407 下一页
摘要: 1、linux系统中case主要用于选择执行、在需要进行多重分支的情况下使用,case在多个范围内匹配数据,若匹配成则执行相关的命令并结束整个条件测试。 简单示例: [root@linuxprobe test]# ls test.sh [root@linuxprobe test]# cat test 阅读全文
posted @ 2020-10-14 21:00 小鲨鱼2018 阅读(1998) 评论(0) 推荐(0)
摘要: 1、 直接创建用户 [root@linuxprobe home]# pwd/home [root@linuxprobe home]# ls a.txt linuxprobe software test.sh [root@linuxprobe home]# seq -f liujiaxin%02g 1 阅读全文
posted @ 2020-10-14 14:53 小鲨鱼2018 阅读(883) 评论(0) 推荐(0)
摘要: 1、&& 表示与,上一句执行成功则执行下一句;|| 表示或,上一句执行失败则执行下一句 [root@linuxprobe test]# touch a.txt [root@linuxprobe test]# ls a.txt [root@linuxprobe test]# [ -e a.txt ] 阅读全文
posted @ 2020-10-14 12:13 小鲨鱼2018 阅读(193) 评论(0) 推荐(0)
摘要: 1、Linux系统中文件测试语句用于判断文件是否存在、是文件或者目录、或者权限判断 linux系统中 echo $? 用于判断上一句是否成功执行,成功返回0,不成功返回其他数字, 简单示例: [root@linuxprobe test]# ls [root@linuxprobe test]# mkd 阅读全文
posted @ 2020-10-13 22:57 小鲨鱼2018 阅读(430) 评论(0) 推荐(0)
摘要: 1、linux系统中while循环示例 [root@linuxprobe test]# ls test.sh [root@linuxprobe test]# cat test.sh #!/bin/bash echo "the scale of price is 0-999!" ## 输入内容提示 P 阅读全文
posted @ 2020-10-13 22:25 小鲨鱼2018 阅读(796) 评论(0) 推荐(0)
摘要: 1、linux中$random用于生成0—32767的随机数 简单示例: [root@linuxprobe r_toy_par]# echo $RANDOM ## 取随机值 (小概率一样) 23603 [root@linuxprobe r_toy_par]# echo $RANDOM ##同上 16 阅读全文
posted @ 2020-10-13 22:21 小鲨鱼2018 阅读(7261) 评论(1) 推荐(3)
摘要: 1、linux系统中let命令在bash中用于计算,变量名前不用加$,可以实现自加和自减操作 简单用法 [root@linuxprobe test]# a=3 [root@linuxprobe test]# echo $a 3 [root@linuxprobe test]# b=a+4 [root@ 阅读全文
posted @ 2020-10-13 22:01 小鲨鱼2018 阅读(1271) 评论(0) 推荐(0)
摘要: 1、linux系统中expr命令实现命令行中的四则运算 简单示例: [root@linuxprobe test]# expr 5 + 3 ## 在命令行中实现加法运算 8 2、中间必须有空格 [root@linuxprobe test]# expr 5+3 ##中间必须有空格 5+3 [root@l 阅读全文
posted @ 2020-10-13 21:19 小鲨鱼2018 阅读(1335) 评论(0) 推荐(0)
摘要: 1、linux系统中read命令用于从标准输入中读取数据,进而给变量赋值。 简单用法: [root@linuxprobe test]# echo $var1 ## 首先查看未赋值前变量,发现是空值 [root@linuxprobe test]# read var1 ## read命令直接跟想要赋值的 阅读全文
posted @ 2020-10-13 18:03 小鲨鱼2018 阅读(2001) 评论(0) 推荐(0)
摘要: 恭喜湖人,时隔十年,再次夺冠 ! 阅读全文
posted @ 2020-10-12 21:54 小鲨鱼2018 阅读(70) 评论(0) 推荐(0)
上一页 1 ··· 394 395 396 397 398 399 400 401 402 ··· 407 下一页