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工具安裝成功。