中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

linux命令系列 grep

時(shí)間:2018-11-30

grep, egrep, fgrep - print lines matching a pattern

SYNOPSIS

grep [OPTIONS] PATTERN [FILE...]

grep [options] pattern [files]。

/*** 客戶端壓縮圖片* @param file* @param [options]* @constructor*/function lrz(file, options) {this。

// 暴露接口window.lrz = function(file, options) {return new lrz(file, options)。

grep [options] pattern file。

linux系統(tǒng)中g(shù)rep命令是一種強(qiáng)大的文本搜索工具,它能使用正則表達(dá)式搜索文本,并把匹配的行打印出來,grep全稱是Global Regular Expression Print

1. 常用選項(xiàng):

在 php 中有兩類正則表達(dá)式函數(shù),一類是 perl 兼容正則表達(dá)式函數(shù),一類是 posix 擴(kuò)展正則表達(dá)式函數(shù)。

正則表達(dá)式通常用兩個(gè)斜杠“/ /”包裹起來作為pattern使用,我們稱之為正則表達(dá)式常量。

正則表達(dá)式(regular expression 或 regexp)分為基礎(chǔ)正則表達(dá)式(basic regexp)和擴(kuò)展正則表達(dá)式(extended regexp)。

grep一般情況下支持基本正則表達(dá)式,可以通過參數(shù)-e支持?jǐn)U展正則表達(dá)式,另外grep單獨(dú)提供了一個(gè)擴(kuò)展命令叫做egrep用來支持?jǐn)U展正則表達(dá)式,這條命令和grep -e等價(jià)。

-i, --ignore-case:Ignore case distinctions in both the PATTERN and the input files. #忽略大小寫

-v, --invert-match:Invert the sense of matching, to select non-matching lines. #反過來,只打印沒有匹配的,而匹配的反而不打印

-n, --line-number:Prefix each line of output with the 1-based line number within its input file. #顯示行號(hào)

-w, --word-regexp #被匹配的文本只能是單詞,而不能是單詞中的某一部分,如文本中有l(wèi)iker,而我搜尋的只是like,就可以使用-w選項(xiàng)來避免匹配liker

Select only those lines containing matches that form whole words. The test is that the matching substring must either be at the beginning of the line, or preceded by a non-word

constituent character. Similarly, it must be either at the end of the line or followed by a non-word constituent character. Word-constituent characters are letters, digits, and the

underscore.

執(zhí)行以上命令后,如果安裝過程沒有提示錯(cuò)誤的話,則表示veil工具安裝成功。