上一页 1 2 3 4 5 6 ··· 410 下一页
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# 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 test]# sed 's/.*/a & b 阅读全文
posted @ 2026-01-02 00:25 小鲨鱼2018 阅读(3) 评论(0) 推荐(0)
摘要: 001、 小写转换为大写 [root@PC1 test]# ls [root@PC1 test]# echo {a..g} a b c d e f g [root@PC1 test]# echo {a..g} | sed 's/[a-z]/\U&/g' ## \U表示将后边的字母转换为大写(U:up 阅读全文
posted @ 2026-01-02 00:14 小鲨鱼2018 阅读(3) 评论(0) 推荐(0)
摘要: 001、Linux 中 awk sub替换中双引号与/ /的使用 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 [roo 阅读全文
posted @ 2025-12-31 16:17 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
摘要: 001、Linux 中 依据列标识对数据进行编号 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试文本 01 b 03 04 05 06 c 08 09 10 11 c 13 14 15 16 b 18 19 20 21 a 23 阅读全文
posted @ 2025-12-31 16:00 小鲨鱼2018 阅读(3) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试文本 01 02 03 04 09 10 11 12 13 14 15 16 17 18 19 20 [root@PC1 test]# cat -A a.txt ## 输出空 阅读全文
posted @ 2025-12-29 10:36 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# 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 test]# grep " 阅读全文
posted @ 2025-12-29 10:16 小鲨鱼2018 阅读(2) 评论(0) 推荐(0)
摘要: 001、 [root@localhost test]# ls a.txt [root@localhost test]# cat a.txt ## 测试文本 01 02 03 04 05 06 07 08 09 10 11 12 [root@localhost test]# sed -n '1,${p 阅读全文
posted @ 2025-12-25 23:20 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
摘要: 001、利用awk实现 [root@localhost test]# ls a.txt [root@localhost test]# cat a.txt ## 生成一个测试文本 01 02 03 04 05 06 07 08 09 10 11 12 [root@localhost test]# aw 阅读全文
posted @ 2025-12-25 23:09 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
摘要: Linux 中 如何将文本每行中最后一个出现的指定字符替换为特定的字符 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 01 02k 03k k04 05 06 07 08 09k 10 11k 12 13 14k 阅读全文
posted @ 2025-12-25 17:23 小鲨鱼2018 阅读(3) 评论(0) 推荐(0)
摘要: Linux 中 sed命令的反向选择 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试文本 01 02_mn 03 04 05 06 07 08 09 10 11_abc 12 13 14 15_abc 16 17 18_ 阅读全文
posted @ 2025-12-25 14:50 小鲨鱼2018 阅读(4) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 410 下一页