grep 檔案中查詢字串的運用

2021-05-25 15:19:13 字數 859 閱讀 2524

you use find to search your system for files, but you use grep to search files for strings

grep [options] pattern [files]

if no filenames are given, it searches standard input.

$ grepe$ words2.txt :

在檔案words2.txt

中查詢以

e結尾的字串

$ grep^e words2.txt

在檔案

words2.txt

中查詢以

e開始的字串

$ grep a[[:blank:]] words2.txt

:在檔案

words2.txt

中查詢以

a結尾的字串(由於

a是單字元,所以查詢

a+空格的)

$grep th.[[:space:]] words2.txt

:在檔案

words2.txt

中查詢以

th開始,並且有三個字元的字串,

[[:space:]]

用來分隔末尾的單詞

$grep -e [a-z]/ words2.txt:

在檔案words2.txt

中查詢以

a-z組成並且有

10個字元的字串

grep 查詢字串

15 grep grep 查詢字串 grep nr hello home eastmoon 16 mount和umount mount 掛載裝置 umount 解除安裝裝置 u盤等的掛載 mount dev sda tmp 網路的掛載 mount t nfs 192.168.5.110 home r...

查詢字串

在乙個主串中查詢相應的子串,如 abcdwoshidef 中查詢 woshi 方法 該實現的方法是最簡單的模式匹配方法,時間複雜度較高 include iostream using namespace std int searchstring const char str1,const char s...

查詢字串

qstring startwith 判斷乙個字串是否以某個字串開頭,引數 字串,大小寫敏感 qstring str welcome to you str.startswith welcome qt casesensitive 返回true str.startswith you qt casesens...