grep--常用精选

作者: 运维前线 | 来源:发表于2017-01-07 19:49 被阅读45次

1、从firefox中提取cookie

grep -oP '"url":"\K[^"]+' $(ls -t ~/.mozilla/firefox/*/sessionstore.js | sed q) 

2、查找忽略大小写

grep -i joe users.txt                # find joe, Joe, JOe, JOE, etc.

3、正则匹配搜索

grep '^fred' /etc/passwd            # find 'fred', but only at the start of a line

grep '[FG]oo' *                      # find Foo or Goo in all files in the current dir

grep '[0-9][0-9][0-9]' *            # find all lines in all files in the current dir with three numbers in a row

4、根据匹配关键字所在行

grep -B5 "the living" gettysburg-address.txt        # show all matches, and five lines before each match

grep -A10 "the living" gettysburg-address.txt      # show all matches, and ten lines after each match

grep -B5 -A5 "the living" gettysburg-address.txt    # five lines before and ten lines after

5、

相关文章

  • grep--常用精选

    1、从firefox中提取cookie grep -oP '"url":"\K[^"]+' $(ls -t ~/....

  • find--常用精选

    1、查找重复的文件(基于md5) find -type f -exec md5sum '{}' ';' | sor...

  • sed--常用精选

    1、清除文件中的注释 sed -i -e '/^#[^!].*/d' -e 's/\(.*[^!]\)#.*[^}...

  • awk--常用精选

    创建sample问价为例: [root@log ~]#cat sample.txtSample Line 1Sam...

  • 英语口语练习

    英语口语练习——八大常用网站推荐 一、人人听力网 英语口语8000句,根据日常生活最常用的句子,精选出了8000个...

  • 学习日记

    今天收了很多资料,包括“GRE救命800词的EXCEL”,“子睿范文精选集2018及配套音频”,“口语写作常用素材...

  • 原创精选:《凉城旧事》(散文)

    原创精选:《凉城旧事》(散文) 作者:丁丁 人常用秋天来形容伤感、离愁,无论是秋天的风,还是秋天的雨,都...

  • 国人开源一款小而全的Python资料库,厉害啊!全套Python

    本期精选全套Python必备资料 包括:入门必备/初级代码、视频教程、工具组件、常用库、数据库、源码参考、算法、进...

  • 干货盘点 | 微信公众号编辑常用工具

    精选部分常用公众号运营工具,供参考: 【本文目录】: 一. 公众号分析工具*1款 二. 图文排版工具*3款 三. ...

  • PS商业插画教程【687期】

    今日精选 资源名称|ipad手绘插画全套教程 资源格式|MP4 资源大小|72GB 资源附赠|常用笔刷+配色卡合集...

网友评论

    本文标题:grep--常用精选

    本文链接:https://www.haomeiwen.com/subject/shwfbttx.html