摘要: 1 sed编辑器 在命令行定义编辑器命令 [root@iZbp11f8g5h7oozejqy6k6Z ~]# echo "this is a test" | sed 's/test/big test/' this is a big test [root@iZbp11f8g5h7oozejqy6k6Z 阅读全文
posted @ 2022-05-10 18:40 Tatataaa 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 正则表达式识别的特殊字符包括: . * [ ] ^ $ { } \ + ? | ( ) 如果要用某个特殊字符为文本字符,则必须转义 [root@iZbp11f8g5h7oozejqy6k6Z test5.9]# sed -n '/\$/p' data1 the cost is $4.0 另外'/'虽 阅读全文
posted @ 2022-05-10 10:04 Tatataaa 阅读(156) 评论(0) 推荐(0) 编辑