使用sed,如何匹配字符类中的方括号?

时间:2012-06-26 19:34:56

标签: sed

以下是原始数据的一大块:

00000000  54 6f 70 69 63 20 46 6f  72 75 6d 20 52 65 70 6c  |Topic Forum Repl|
00000010  69 65 73 20 4c 61 73 74  20 70 6f 73 74 20 31 20  |ies Last post 1 |
00000020  4c 69 6e 75 78 20 54 6f  64 61 79 20 31 34 3a 34  |Linux Today 14:4|
00000030  36 3a 35 37 20 62 79 20  4c 69 6e 75 78 20 4f 75  |6:57 by Linux Ou|
00000040  74 6c 61 77 73 20 32 36  39 20 e2 80 93 20 53 6f  |tlaws 269 ... So|
00000050  6d 65 6f 6e 65 20 4b 6c  6f 73 65 20 54 68 61 74  |meone Klose That|
00000060  20 4f 75 74 6c 61 77 73  20 32 38 20 73 79 73 79  | Outlaws 28 sysy|
00000070  70 68 75 73 2e 6a 6f 6e  65 73 20 48 6f 6c 65 20  |phus.jones Hole |
00000080  62 79 20 59 4f 42 41 20  5b 20 31 20 32 20 5d 20  |by YOBA [ 1 2 ] |
00000090  32 20 4c 69 6e 75 78 20  26 20 54 6f 64 61 79 20  |2 Linux & Today |
000000a0  31 31 3a 34 34 3a 35 31  20 62 79 20 4c 6f 6f 6b  |11:44:51 by Look|
000000b0  73 20 6c 69 6b 65 20 43  61 6e 6f 6e 69 63 61 6c  |s like Canonical|
000000c0  20 69 73 20 61 6e 6e 6f  75 63 69 6e 67 20 70 6c  | is annoucing pl|
000000d0  61 6e 73 20 46 72 65 65  64 6f 6d 20 31 20 6b 72  |ans Freedom 1 kr|

这是一个十六进制转储,我有兴趣隔离文本部分。 这是一个几乎可以工作的sed表达式:

$ sed 's/.* |\([a-zA-Z0-9:& \.]*\)|$/\1/g' hex.dat 
Topic Forum Repl
ies Last post 1 
Linux Today 14:4
6:57 by Linux Ou
tlaws 269 ... So
meone Klose That
 Outlaws 28 sysy
phus.jones Hole 
00000080  62 79 20 59 4f 42 41 20  5b 20 31 20 32 20 5d 20  |by YOBA [ 1 2 ] |
2 Linux & Today 
11:44:51 by Look
s like Canonical
 is annoucing pl
ans Freedom 1 kr

几乎。但是如何过滤最后一行呢?

$ sed 's/.* |\([a-zA-Z0-9:&\[\] \.]*\)|$/\1/g' hex.dat 

    $ sed 's/.* |\([a-zA-Z0-9:&\\[\\] \.]*\)|$/\1/g' hex.dat 

根本不工作(他们没有翻译任何东西)。

$ sed 's/.* |\([a-zA-Z0-9:&[] \.]*\)|$/\1/g' hex.dat 

显然无法正常工作。

感谢您的帮助。

1 个答案:

答案 0 :(得分:12)

你几乎拥有它。

请查看Unix regular expressions tutorial的此部分。

你可以这样做的方法是[在你开始你的角色课程后立即]。

所以,试试sed 's/.* |\([][a-zA-Z0-9:& \.]*\)|$/\1/g' hex.dat

为了澄清,[在字符类中的位置并不重要,只要您打算在字符类(])中包含的结束括号紧跟在您的开头之后人物类。

另外,作为进一步的编辑,请尝试输入man cut并使用Tomasz在评论中说的内容。

cut -d='|' -f2 hex.dat将剪切文件,在管道上分隔,然后取第二个字段。