Sed is a good file processing tool, itself is a pipe command, mainly in the behavior of the unit processing, you can replace the data rows, delete, add, select and other specific work, the following first understand the use of SED
The SED command line format is:
sed [-nefri] ' command ' input text
Common options:
-N: Use Quiet (silent) mode. In the usage of general sed, all data from stdin is generally listed on the screen. However, if you add the-n parameter, only the line (or action) that is specially processed by SED is listed.
-E: The Action of SED is edited directly on the instruction list mode;
-F: The action of SED is written directly in a file, and-f filename can perform the SED action within filename;
-r:sed's actions support the syntax of extended formal notation. (Presupposition is the basic formal notation of French law)
-I: Directly modify the contents of the read file instead of the screen output.
Common commands:
A: New, a can be followed by a string, and these strings will appear in a new line (the current next line) ~
C: Replace, C can be followed by strings, these strings can replace the line between N1,N2!
D: Delete, because it is deleted ah, so d usually do not pick up any boom;
I: Insert, I can be followed by the string, and these strings will appear on a new line (the current line);
P: Print, that is, print out a selected material. Normally p will work with parameter Sed-n ~
S: Replace, can be directly replaced by work! Usually this s action can be paired with formal notation! For example 1,20s/old/new/g is!
Example: (Suppose we have a file named AB)
Delete a row
[[Email protected] Ruby ] # sed ' 1d ' ab#删除第一行
[[email protected] ruby]# sed ' $d ' ab#删除最后一行
[[email protected] ruby]# sed ' 1,2d ' ab#删除第一行到第二行
[[email protected] ruby]# sed ' 2, $d ' AB#删除第二行到最后一行
Show a row
. [[Email protected] Ruby ] # sed-n ' 1p ' ab#显示第一行
[[email protected] ruby]# sed-n ' $p ' ab#显示最后一行
[[email protected] ruby]# sed-n ' 1,2p ' ab#显示第一行到第二行
[[email protected] ruby]# sed-n ' 2, $p ' AB#显示第二行到最后一行
Querying using a pattern
[[email protected] ruby] # sed-n '/ruby/p ' ab #查询包括关键字ruby所在所有行
[[email protected] ruby] # sed-n '/\$/p ' AB #查询包括关键字 $ where all lines, using backslashes \ Shielding special meaning
Add one or more lines of string
[email protected] ruby]# Cat AB
Hello!
Ruby is me,welcome to my blog.
End
[[email protected] ruby]# sed ' 1a drink tea ' ab#第一行后增加字符串 "Drink Tea"
Hello!
Drink tea
Ruby is me,welcome to my blog.
End
[[email protected] ruby]# sed ' 1,3a drink tea ' ab#第一行到第三行后增加字符串 "Drink Tea"
Hello!
Drink tea
Ruby is me,welcome to my blog.
Drink tea
End
Drink tea
[[email protected] ruby]# sed ' 1a drink tea\ nor coffee ' ab#第一行后增加多行, use line break \ n
Hello!
Drink tea
or coffee
Ruby is me,welcome to my blog.
End
Instead of one row or more rows
[[email protected] ruby]# sed ' 1c Hi ' AB#第一行代替为Hi
Hi
Ruby is me,welcome to my blog.
End
[[email protected] ruby]# sed ' 1,2c Hi ' ab#第一行到第二行代替为Hi
Hi
End
Replace a section in a row
Format: SED' s/The string to replace/The new string/g' (the string to be replaced can be used as a regular expression)
[[email protected] ruby]# sed-n '/ruby/p ' ab | sed ' s/ruby/bird/g '#替换ruby为bird
[[email protected] ruby]# sed-n '/ruby/p ' ab | sed ' s/ruby//g '#删除ruby
inserting
[[email protected] Ruby] # Enter "Bye"
[[email protected] ruby]# cat ab
Ruby is me,welcome to my blog.
end
bye
This article is from the "Intelligent Future _XFICC" blog, please be sure to keep this source http://xficc.blog.51cto.com/1189288/1621403
Linux sed replacement (full line replacement, partial replacement), delete deleted, add added, select