上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 367 下一页
摘要: 4种; 01、bash a.sh 02、sh a.sh 03、. a.sh 04、source 前两种会重开shell终端; 后两种是本shell; 测试如下: 001、测试前两种方法;不影响当前路径 [root@pc1 test1]# ls a.sh [root@pc1 test1]# pwd # 阅读全文
posted @ 2024-02-20 15:14 小鲨鱼2018 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 001、问题 shell终端下,双引号内输出!报错 [root@pc1 test1]# echo "hello world!" -bash: !": event not found 002、问题原因 终端中! 表示执行历史命令。 003、解决方法 a、使用单引号 [root@pc1 test1]# 阅读全文
posted @ 2024-02-20 14:48 小鲨鱼2018 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@pc1 test1]# ls a.txt [root@pc1 test1]# cat a.txt ## 测试文本 aa bb cc kk ee ss ff uu zz vv ee ww ## sed预存储抽取文件的第一列 [root@pc1 test1]# sed -r 's/ 阅读全文
posted @ 2024-02-20 12:25 小鲨鱼2018 阅读(22) 评论(0) 推荐(0) 编辑
摘要: -r:其中一项作用是保证字符为其本身字符; 没有-r字符具有正则意义; 如下例子: 001、 一下命令用于sed删除开头的空格 [root@pc1 test1]# ls a.txt [root@pc1 test1]# cat a.txt ## 测试文本 01 02 03 04 05 06 07 08 阅读全文
posted @ 2024-02-20 11:38 小鲨鱼2018 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 001、输出偶数行 [root@pc1 test1]# ls a.txt [root@pc1 test1]# cat a.txt ## 测试文本 01 01 02 02 03 03 04 04 05 05 06 06 07 07 08 08 09 09 10 10 [root@pc1 test1]# 阅读全文
posted @ 2024-02-20 11:01 小鲨鱼2018 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 001、整体重复 a、 [root@pc1 test1]# ls a.txt [root@pc1 test1]# cat a.txt ## 测试文本 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 [root@pc1 test1 阅读全文
posted @ 2024-02-20 10:51 小鲨鱼2018 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 001、 -c: complement:表示取补集; -d:delete:表示删除 [root@pc1 test1]# echo "ab,123.cd-458fqq" | tr -dc [[:digit:]] | sed 's/$/\n/' ## 删除所有数字的补集,则剩下数字 123458 [ro 阅读全文
posted @ 2024-02-19 17:37 小鲨鱼2018 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 001、$RANDOM (0~32767的随机数) a、 [root@pc1 test1]# echo $RANDOM ## 直接输出 31128 [root@pc1 test1]# echo $RANDOM 2539 [root@pc1 test1]# echo $RANDOM 23307 b、限 阅读全文
posted @ 2024-02-19 17:16 小鲨鱼2018 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 001、方式1 [root@pc1 test1]# awk 'BEGIN{print 10 + 5}' 15 [root@pc1 test1]# awk 'BEGIN{print 10 / 5}' 2 002、方式2 [root@pc1 test1]# echo | awk '{print 10 + 阅读全文
posted @ 2024-02-19 16:56 小鲨鱼2018 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@pc1 test1]# ls a.txt [root@pc1 test1]# cat a.txt ## 测试文本 33 ff su ii aa kk ff dd sU jj kk ff aa Su ee aa SU kk ff xx ad sk uu ff [root@pc1 阅读全文
posted @ 2024-02-19 15:34 小鲨鱼2018 阅读(29) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 367 下一页