linux中grep基本用法
grep 查詢並且提取檔案內容
常用的匹配模式
hello 包含字元hello
^hello 以字串hello開頭
hello$ 以字串hello結尾
語法格式
grep “條件” 檔名稱
例:
1.在/hello/a.txt檔案中找出包含 hello 的行
grep “hello” /hello/a.txt
hello
11 hello2
2.在/hello/a.txt檔案中找出以 hello開頭的行
grep “^hello” /hello/a.txt
hello
3.在/hello/a.txt檔案中找出以hello結尾的行
# grep “hello$” /hello/a.txt
hello
4.在/hello/a.txt檔案中找出以hello開頭的行,並且寫入到b.txt檔案中
grep “^hello” /hello/a.txt > b.txt
[root@hello hello]# cat b.txt
hello
相關文章
- Linux 中 grep xxx的用法Linux
- linux三劍客(grep、sed、awk)基本使用Linux
- 【SHELL】grep 命令用法
- git grep命令用法Git
- linux useradd命令的基本用法Linux
- Linux系統中grep如何使用?Linux
- Python中if的基本用法Python
- linux-grepLinux
- Linux grep 命令Linux
- Linux 中 grep -P引數的作用Linux
- 掌握Linux中的12個grep命令Linux
- QMl 中alias 的基本用法
- stl中map的基本用法
- C++中& 的基本用法C++
- Linux 中grep命令中 -P選項的作用Linux
- grep精確匹配搜尋某個單詞的用法 (附: grep高效用法小結))
- Linux之grep中的正規表示式Linux
- linux命令之grepLinux
- 【Linux命令】grep命令Linux
- 文字三劍客之grep的用法
- Linux 中grep命令如何匹配中文字元Linux字元
- Linux命令篇 - grep 命令Linux
- Linux grep命令的使用Linux
- Linux基礎命令---grepLinux
- 【Shell】sed xargs grep awk的組合用法
- GORM基本用法GoORM
- Promise基本用法Promise
- BigDecimal 基本用法Decimal
- Git基本用法Git
- merge into基本用法
- CompletableFuture基本用法
- Moya基本用法
- requests基本用法
- linux 中 grep匹配 區分空格和製表符Linux
- linux 中 date命令的用法Linux
- Linux日誌搜尋 grepLinux
- Linux grep命令詳細教程Linux
- linux下的find 和 grepLinux