摘要: awk处理方式: awk一次处理一行内容 awk对每行可以切片处理 awk '{print $1}' //输出首个单词 awk-格式 命令行格式 awk [options] 'command' file(s) 脚本格式 awk -f awk-script-file file(s) awk内置参数应用 阅读全文
posted @ 2021-04-08 17:37 苍茫宇宙 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 环境:centos7 使用sed-格式 命令行格式 sed [options] 'command' file(s) option: -e;-n command: 行定位 (正则)+sed命令(操作) 格式行格式举例 sed -n '/root/p' sed -e '10,20p' -e 's/fal 阅读全文
posted @ 2021-04-08 17:31 苍茫宇宙 阅读(388) 评论(0) 推荐(0) 编辑