Shell
文章平均质量分 84
Andrew Programming
www.andrew-programming.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
grep's Options
Table 4.2. grep's Options Option What It Does –b Precedes each line by the block number on which it was found. This is sometimes useful in locating disk block numbers b原创 2014-08-27 17:11:38 · 172 阅读 · 0 评论 -
Review of grep
Table 4.3. Review of grep Command What It Does grep '\' file Prints lines containing the word Tom. grep 'Tom Savage' file Prints lines containing Tom Sava原创 2014-08-28 10:12:10 · 139 阅读 · 0 评论 -
grep's Regular Expression Metacharacters
Table 4.1. grep's Regular Expression Metacharacters Metacharacter Function Example What It Matches ^ Beginning-of-line anchor '^love' Matches all li原创 2014-08-27 16:57:29 · 182 阅读 · 0 评论 -
sed Commands
sed Commands Command Function a\ Appends one or more lines of text to the current line c\ Changes (replaces) text in the current line with new text原创 2014-08-28 17:30:23 · 214 阅读 · 0 评论 -
The Basic Set—GNU grep's Regular Expression Metacharacters
Metacharacter Function Example What It Matches ^ Beginning-of-line anchor ^love Matches all lines beginning with love. $ End-of-line anchor原创 2014-08-28 10:21:43 · 164 阅读 · 0 评论
分享