免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1306 | 回复: 1
打印 上一主题 下一主题

经典!!! HANDY ONE-LINERS FOR SED (ZT) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-07-08 19:53 |只看该作者 |倒序浏览
  1. -------------------------------------------------------------------------
  2. HANDY ONE-LINERS FOR SED (Unix stream editor)               Apr. 26, 2004
  3. compiled by Eric Pement - pemente[at]northpark[dot]edu        version 5.4
  4. Latest version of this file is usually at:
  5.    http://sed.sourceforge.net/sed1line.txt
  6.    http://www.student.northpark.edu/pemente/sed/sed1line.txt
  7. This file is also available in Portuguese at:
  8.    http://www.lrv.ufsc.br/wmaker/sed_ptBR.html

  9. FILE SPACING:

  10. # double space a file
  11. sed G

  12. # double space a file which already has blank lines in it. Output file
  13. # should contain no more than one blank line between lines of text.
  14. sed '/^$/d;G'

  15. # triple space a file
  16. sed 'G;G'

  17. # undo double-spacing (assumes even-numbered lines are always blank)
  18. sed 'n;d'

  19. # insert a blank line above every line which matches "regex"
  20. sed '/regex/{x;p;x;}'

  21. # insert a blank line below every line which matches "regex"
  22. sed '/regex/G'

  23. # insert a blank line above and below every line which matches "regex"
  24. sed '/regex/{x;p;x;G;}'

  25. NUMBERING:

  26. # number each line of a file (simple left alignment). Using a tab (see
  27. # note on '\t' at end of file) instead of space will preserve margins.
  28. sed = filename | sed 'N;s/\n/\t/'

  29. # number each line of a file (number on left, right-aligned)
  30. sed = filename | sed 'N; s/^/     /; s/ *\(.\{6,\}\)\n/\1  /'

  31. # number each line of file, but only print numbers if line is not blank
  32. sed '/./=' filename | sed '/./N; s/\n/ /'

  33. # count lines (emulates "wc -l")
  34. sed -n '$='

  35. TEXT CONVERSION AND SUBSTITUTION:

  36. # IN UNIX ENVIRONMENT: convert DOS newlines (CR/LF) to Unix format
  37. sed 's/.$//'               # assumes that all lines end with CR/LF
  38. sed 's/^M$//'              # in bash/tcsh, press Ctrl-V then Ctrl-M
  39. sed 's/\x0D$//'            # gsed 3.02.80, but top script is easier

  40. # IN UNIX ENVIRONMENT: convert Unix newlines (LF) to DOS format
  41. sed "s/$/`echo -e \\\r`/"            # command line under ksh
  42. sed 's/$'"/`echo \\\r`/"             # command line under bash
  43. sed "s/$/`echo \\\r`/"               # command line under zsh
  44. sed 's/$/\r/'                        # gsed 3.02.80

  45. # IN DOS ENVIRONMENT: convert Unix newlines (LF) to DOS format
  46. sed "s/$//"                          # method 1
  47. sed -n p                             # method 2

  48. # IN DOS ENVIRONMENT: convert DOS newlines (CR/LF) to Unix format
  49. # Can only be done with UnxUtils sed, version 4.0.7 or higher.
  50. # Cannot be done with other DOS versions of sed. Use "tr" instead.
  51. sed "s/\r//" infile >outfile         # UnxUtils sed v4.0.7 or higher
  52. tr -d \r <infile >outfile            # GNU tr version 1.22 or higher

  53. # delete leading whitespace (spaces, tabs) from front of each line
  54. # aligns all text flush left
  55. sed 's/^[ \t]*//'                    # see note on '\t' at end of file

  56. # delete trailing whitespace (spaces, tabs) from end of each line
  57. sed 's/[ \t]*$//'                    # see note on '\t' at end of file

  58. # delete BOTH leading and trailing whitespace from each line
  59. sed 's/^[ \t]*//;s/[ \t]*$//'

  60. # insert 5 blank spaces at beginning of each line (make page offset)
  61. sed 's/^/     /'

  62. # align all text flush right on a 79-column width
  63. sed -e :a -e 's/^.\{1,78\}$/ &/;ta'  # set at 78 plus 1 space

  64. # center all text in the middle of 79-column width. In method 1,
  65. # spaces at the beginning of the line are significant, and trailing
  66. # spaces are appended at the end of the line. In method 2, spaces at
  67. # the beginning of the line are discarded in centering the line, and
  68. # no trailing spaces appear at the end of lines.
  69. sed  -e :a -e 's/^.\{1,77\}$/ & /;ta'                     # method 1
  70. sed  -e :a -e 's/^.\{1,77\}$/ &/;ta' -e 's/\( *\)\1/\1/'  # method 2

  71. # substitute (find and replace) "foo" with "bar" on each line
  72. sed 's/foo/bar/'             # replaces only 1st instance in a line
  73. sed 's/foo/bar/4'            # replaces only 4th instance in a line
  74. sed 's/foo/bar/g'            # replaces ALL instances in a line
  75. sed 's/\(.*\)foo\(.*foo\)/\1bar\2/' # replace the next-to-last case
  76. sed 's/\(.*\)foo/\1bar/'            # replace only the last case

  77. # substitute "foo" with "bar" ONLY for lines which contain "baz"
  78. sed '/baz/s/foo/bar/g'

  79. # substitute "foo" with "bar" EXCEPT for lines which contain "baz"
  80. sed '/baz/!s/foo/bar/g'

  81. # change "scarlet" or "ruby" or "puce" to "red"
  82. sed 's/scarlet/red/g;s/ruby/red/g;s/puce/red/g'   # most seds
  83. gsed 's/scarlet\|ruby\|puce/red/g'                # GNU sed only

  84. # reverse order of lines (emulates "tac")
  85. # bug/feature in HHsed v1.5 causes blank lines to be deleted
  86. sed '1!G;h;$!d'               # method 1
  87. sed -n '1!G;h;$p'             # method 2

  88. # reverse each character on the line (emulates "rev")
  89. sed '/\n/!G;s/\(.\)\(.*\n\)/&\2\1/;//D;s/.//'

  90. # join pairs of lines side-by-side (like "paste")
  91. sed '$!N;s/\n/ /'

  92. # if a line ends with a backslash, append the next line to it
  93. sed -e :a -e '/\\$/N; s/\\\n//; ta'

  94. # if a line begins with an equal sign, append it to the previous line
  95. # and replace the "=" with a single space
  96. sed -e :a -e '$!N;s/\n=/ /;ta' -e 'P;D'

  97. # add commas to numeric strings, changing "1234567" to "1,234,567"
  98. gsed ':a;s/\B[0-9]\{3\}\>/,&/;ta'                     # GNU sed
  99. sed -e :a -e 's/\(.*[0-9]\)\([0-9]\{3\}\)/\1,\2/;ta'  # other seds

  100. # add commas to numbers with decimal points and minus signs (GNU sed)
  101. gsed ':a;s/\(^\|[^0-9.]\)\([0-9]\+\)\([0-9]\{3\}\)/\1\2,\3/g;ta'

  102. # add a blank line every 5 lines (after lines 5, 10, 15, 20, etc.)
  103. gsed '0~5G'                  # GNU sed only
  104. sed 'n;n;n;n;G;'             # other seds

  105. SELECTIVE PRINTING OF CERTAIN LINES:

  106. # print first 10 lines of file (emulates behavior of "head")
  107. sed 10q

  108. # print first line of file (emulates "head -1")
  109. sed q

  110. # print the last 10 lines of a file (emulates "tail")
  111. sed -e :a -e '$q;N;11,$D;ba'

  112. # print the last 2 lines of a file (emulates "tail -2")
  113. sed '$!N;$!D'

  114. # print the last line of a file (emulates "tail -1")
  115. sed '$!d'                    # method 1
  116. sed -n '$p'                  # method 2

  117. # print only lines which match regular expression (emulates "grep")
  118. sed -n '/regexp/p'           # method 1
  119. sed '/regexp/!d'             # method 2

  120. # print only lines which do NOT match regexp (emulates "grep -v")
  121. sed -n '/regexp/!p'          # method 1, corresponds to above
  122. sed '/regexp/d'              # method 2, simpler syntax

  123. # print the line immediately before a regexp, but not the line
  124. # containing the regexp
  125. sed -n '/regexp/{g;1!p;};h'

  126. # print the line immediately after a regexp, but not the line
  127. # containing the regexp
  128. sed -n '/regexp/{n;p;}'

  129. # print 1 line of context before and after regexp, with line number
  130. # indicating where the regexp occurred (similar to "grep -A1 -B1")
  131. sed -n -e '/regexp/{=;x;1!p;g;$!N;p;D;}' -e h

  132. # grep for AAA and BBB and CCC (in any order)
  133. sed '/AAA/!d; /BBB/!d; /CCC/!d'

  134. # grep for AAA and BBB and CCC (in that order)
  135. sed '/AAA.*BBB.*CCC/!d'

  136. # grep for AAA or BBB or CCC (emulates "egrep")
  137. sed -e '/AAA/b' -e '/BBB/b' -e '/CCC/b' -e d    # most seds
  138. gsed '/AAA\|BBB\|CCC/!d'                        # GNU sed only

  139. # print paragraph if it contains AAA (blank lines separate paragraphs)
  140. # HHsed v1.5 must insert a 'G;' after 'x;' in the next 3 scripts below
  141. sed -e '/./{H;$!d;}' -e 'x;/AAA/!d;'

  142. # print paragraph if it contains AAA and BBB and CCC (in any order)
  143. sed -e '/./{H;$!d;}' -e 'x;/AAA/!d;/BBB/!d;/CCC/!d'

  144. # print paragraph if it contains AAA or BBB or CCC
  145. sed -e '/./{H;$!d;}' -e 'x;/AAA/b' -e '/BBB/b' -e '/CCC/b' -e d
  146. gsed '/./{H;$!d;};x;/AAA\|BBB\|CCC/b;d'         # GNU sed only

  147. # print only lines of 65 characters or longer
  148. sed -n '/^.\{65\}/p'

  149. # print only lines of less than 65 characters
  150. sed -n '/^.\{65\}/!p'        # method 1, corresponds to above
  151. sed '/^.\{65\}/d'            # method 2, simpler syntax

  152. # print section of file from regular expression to end of file
  153. sed -n '/regexp/,$p'

  154. # print section of file based on line numbers (lines 8-12, inclusive)
  155. sed -n '8,12p'               # method 1
  156. sed '8,12!d'                 # method 2

  157. # print line number 52
  158. sed -n '52p'                 # method 1
  159. sed '52!d'                   # method 2
  160. sed '52q;d'                  # method 3, efficient on large files

  161. # beginning at line 3, print every 7th line
  162. gsed -n '3~7p'               # GNU sed only
  163. sed -n '3,${p;n;n;n;n;n;n;}' # other seds

  164. # print section of file between two regular expressions (inclusive)
  165. sed -n '/Iowa/,/Montana/p'             # case sensitive

  166. SELECTIVE DELETION OF CERTAIN LINES:

  167. # print all of file EXCEPT section between 2 regular expressions
  168. sed '/Iowa/,/Montana/d'

  169. # delete duplicate, consecutive lines from a file (emulates "uniq").
  170. # First line in a set of duplicate lines is kept, rest are deleted.
  171. sed '$!N; /^\(.*\)\n\1$/!P; D'

  172. # delete duplicate, nonconsecutive lines from a file. Beware not to
  173. # overflow the buffer size of the hold space, or else use GNU sed.
  174. sed -n 'G; s/\n/&&/; /^\([ -~]*\n\).*\n\1/d; s/\n//; h; P'

  175. # delete all lines except duplicate lines (emulates "uniq -d").
  176. sed '$!N; s/^\(.*\)\n\1$/\1/; t; D'

  177. # delete the first 10 lines of a file
  178. sed '1,10d'

  179. # delete the last line of a file
  180. sed '$d'

  181. # delete the last 2 lines of a file
  182. sed 'N;$!P;$!D;$d'

  183. # delete the last 10 lines of a file
  184. sed -e :a -e '$d;N;2,10ba' -e 'P;D'   # method 1
  185. sed -n -e :a -e '1,10!{P;N;D;};N;ba'  # method 2

  186. # delete every 8th line
  187. gsed '0~8d'                           # GNU sed only
  188. sed 'n;n;n;n;n;n;n;d;'                # other seds

  189. # delete ALL blank lines from a file (same as "grep '.' ")
  190. sed '/^$/d'                           # method 1
  191. sed '/./!d'                           # method 2

  192. # delete all CONSECUTIVE blank lines from file except the first; also
  193. # deletes all blank lines from top and end of file (emulates "cat -s")
  194. sed '/./,/^$/!d'          # method 1, allows 0 blanks at top, 1 at EOF
  195. sed '/^$/N;/\n$/D'        # method 2, allows 1 blank at top, 0 at EOF

  196. # delete all CONSECUTIVE blank lines from file except the first 2:
  197. sed '/^$/N;/\n$/N;//D'

  198. # delete all leading blank lines at top of file
  199. sed '/./,$!d'

  200. # delete all trailing blank lines at end of file
  201. sed -e :a -e '/^\n*$/{$d;N;ba' -e '}'  # works on all seds
  202. sed -e :a -e '/^\n*$/N;/\n$/ba'        # ditto, except for gsed 3.02*

  203. # delete the last line of each paragraph
  204. sed -n '/^$/{p;h;};/./{x;/./p;}'

  205. SPECIAL APPLICATIONS:

  206. # remove nroff overstrikes (char, backspace) from man pages. The 'echo'
  207. # command may need an -e switch if you use Unix System V or bash shell.
  208. sed "s/.`echo \\\b`//g"    # double quotes required for Unix environment
  209. sed 's/.^H//g'             # in bash/tcsh, press Ctrl-V and then Ctrl-H
  210. sed 's/.\x08//g'           # hex expression for sed v1.5

  211. # get Usenet/e-mail message header
  212. sed '/^$/q'                # deletes everything after first blank line

  213. # get Usenet/e-mail message body
  214. sed '1,/^$/d'              # deletes everything up to first blank line

  215. # get Subject header, but remove initial "Subject: " portion
  216. sed '/^Subject: */!d; s///;q'

  217. # get return address header
  218. sed '/^Reply-To:/q; /^From:/h; /./d;g;q'

  219. # parse out the address proper. Pulls out the e-mail address by itself
  220. # from the 1-line return address header (see preceding script)
  221. sed 's/ *(.*)//; s/>.*//; s/.*[:<] *//'

  222. # add a leading angle bracket and space to each line (quote a message)
  223. sed 's/^/> /'

  224. # delete leading angle bracket & space from each line (unquote a message)
  225. sed 's/^> //'

  226. # remove most HTML tags (accommodates multiple-line tags)
  227. sed -e :a -e 's/<[^>]*>//g;/</N;//ba'

  228. # extract multi-part uuencoded binaries, removing extraneous header
  229. # info, so that only the uuencoded portion remains. Files passed to
  230. # sed must be passed in the proper order. Version 1 can be entered
  231. # from the command line; version 2 can be made into an executable
  232. # Unix shell script. (Modified from a script by Rahul Dhesi.)
  233. sed '/^end/,/^begin/d' file1 file2 ... fileX | uudecode   # vers. 1
  234. sed '/^end/,/^begin/d' "$@" | uudecode                    # vers. 2

  235. # zip up each .TXT file individually, deleting the source file and
  236. # setting the name of each .ZIP file to the basename of the .TXT file
  237. # (under DOS: the "dir /b" switch returns bare filenames in all caps).
  238. echo @echo off >zipup.bat
  239. dir /b *.txt | sed "s/^\(.*\)\.TXT/pkzip -mo \1 \1.TXT/" >>zipup.bat

  240. TYPICAL USE: Sed takes one or more editing commands and applies all of
  241. them, in sequence, to each line of input. After all the commands have
  242. been applied to the first input line, that line is output and a second
  243. input line is taken for processing, and the cycle repeats. The
  244. preceding examples assume that input comes from the standard input
  245. device (i.e, the console, normally this will be piped input). One or
  246. more filenames can be appended to the command line if the input does
  247. not come from stdin. Output is sent to stdout (the screen). Thus:

  248. cat filename | sed '10q'        # uses piped input
  249. sed '10q' filename              # same effect, avoids a useless "cat"
  250. sed '10q' filename > newfile    # redirects output to disk

  251. For additional syntax instructions, including the way to apply editing
  252. commands from a disk file instead of the command line, consult "sed &
  253. awk, 2nd Edition," by Dale Dougherty and Arnold Robbins (O'Reilly,
  254. 1997; http://www.ora.com), "UNIX Text Processing," by Dale Dougherty
  255. and Tim O'Reilly (Hayden Books, 1987) or the tutorials by Mike Arst
  256. distributed in U-SEDIT2.ZIP (many sites). To fully exploit the power
  257. of sed, one must understand "regular expressions." For this, see
  258. "Mastering Regular Expressions" by Jeffrey Friedl (O'Reilly, 1997).
  259. The manual ("man") pages on Unix systems may be helpful (try "man
  260. sed", "man regexp", or the subsection on regular expressions in "man
  261. ed"), but man pages are notoriously difficult. They are not written to
  262. teach sed use or regexps to first-time users, but as a reference text
  263. for those already acquainted with these tools.

  264. QUOTING SYNTAX: The preceding examples use single quotes ('...')
  265. instead of double quotes ("...") to enclose editing commands, since
  266. sed is typically used on a Unix platform. Single quotes prevent the
  267. Unix shell from intrepreting the dollar sign ($) and backquotes
  268. (`...`), which are expanded by the shell if they are enclosed in
  269. double quotes. Users of the "csh" shell and derivatives will also need
  270. to quote the exclamation mark (!) with the backsl
复制代码

论坛徽章:
0
2 [报告]
发表于 2004-07-09 18:20 |只看该作者

经典!!! HANDY ONE-LINERS FOR SED (ZT)

以前发过的吧
http://www.chinaunix.net/jh/24/336126.html
http://www.chinaunix.net/jh/24/325187.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP