使用sed计算字符串的出现次数?

时间:2009-11-23 05:56:16

标签: sed

我有一个文件,其中包含多次写入的“标题”。如何使用sed命令查找“title”在该文件中写入的次数,前提是“title”是一行中的第一个字符串?例如

# title
title
title

应输出count = 2,因为第一行标题不是第一个字符串。

更新

我使用awk查找总出现次数:

awk '$1 ~ /title/ {++c} END {print c}' FS=: myFile.txt

但是,我怎么能告诉awk只计算那些 title 第一个字符串的行,如上例所示?

6 个答案:

答案 0 :(得分:15)

永远不要说永远。纯sed(虽然它可能需要GNU版本)。

#!/bin/sed -nf
# based on a script from the sed info file (info sed)
# section 4.8 Numbering Non-blank Lines (cat -b)
# modified to count lines that begin with "title"

/^title/! be

x
/^$/ s/^.*$/0/
/^9*$/ s/^/0/
s/.9*$/x&/
h
s/^.*x//
y/0123456789/1234567890/
x
s/x.*$//
G
s/\n//
h

:e

$ {x;p}

说明:

#!/bin/sed -nf
# run sed without printing output by default (-n)
# using the following file as the sed script (-f)

/^title/! be        # if the current line doesn't begin with "title" branch to label e

x                   # swap the counter from hold space into pattern space
/^$/ s/^.*$/0/      # if pattern space is empty start the counter at zero
/^9*$/ s/^/0/       # if pattern space starts with a nine, prepend a zero
s/.9*$/x&/          # mark the position of the last digit before a sequence of nines (if any)
h                   # copy the marked counter to hold space
s/^.*x//            # delete everything before the marker
y/0123456789/1234567890/   # increment the digits that were after the mark
x                   # swap pattern space and hold space
s/x.*$//            # delete everything after the marker leaving the leading digits
G                   # append hold space to pattern space
s/\n//              # remove the newline, leaving all the digits concatenated
h                   # save the counter into hold space

:e                  # label e

$ {x;p}             # if this is the last line of input, swap in the counter and print it

以下是使用sedsed编写脚本的摘录:

$ echo -e 'title\ntitle\nfoo\ntitle\nbar\ntitle\ntitle\ntitle\ntitle\ntitle\ntitle\ntitle\ntitle' | sedsed-1.0 -d -f ./counter 
PATT:title$
HOLD:$
COMM:/^title/ !b e
COMM:x
PATT:$
HOLD:title$
COMM:/^$/ s/^.*$/0/
PATT:0$
HOLD:title$
COMM:/^9*$/ s/^/0/
PATT:0$
HOLD:title$
COMM:s/.9*$/x&/
PATT:x0$
HOLD:title$
COMM:h
PATT:x0$
HOLD:x0$
COMM:s/^.*x//
PATT:0$
HOLD:x0$
COMM:y/0123456789/1234567890/
PATT:1$
HOLD:x0$
COMM:x
PATT:x0$
HOLD:1$
COMM:s/x.*$//
PATT:$
HOLD:1$
COMM:G
PATT:\n1$
HOLD:1$
COMM:s/\n//
PATT:1$
HOLD:1$
COMM:h
PATT:1$
HOLD:1$
COMM::e
COMM:$ {
PATT:1$
HOLD:1$
PATT:title$
HOLD:1$
COMM:/^title/ !b e
COMM:x
PATT:1$
HOLD:title$
COMM:/^$/ s/^.*$/0/
PATT:1$
HOLD:title$
COMM:/^9*$/ s/^/0/
PATT:1$
HOLD:title$
COMM:s/.9*$/x&/
PATT:x1$
HOLD:title$
COMM:h
PATT:x1$
HOLD:x1$
COMM:s/^.*x//
PATT:1$
HOLD:x1$
COMM:y/0123456789/1234567890/
PATT:2$
HOLD:x1$
COMM:x
PATT:x1$
HOLD:2$
COMM:s/x.*$//
PATT:$
HOLD:2$
COMM:G
PATT:\n2$
HOLD:2$
COMM:s/\n//
PATT:2$
HOLD:2$
COMM:h
PATT:2$
HOLD:2$
COMM::e
COMM:$ {
PATT:2$
HOLD:2$
PATT:foo$
HOLD:2$
COMM:/^title/ !b e
COMM:$ {
PATT:foo$
HOLD:2$
. . .
PATT:10$
HOLD:10$
PATT:title$
HOLD:10$
COMM:/^title/ !b e
COMM:x
PATT:10$
HOLD:title$
COMM:/^$/ s/^.*$/0/
PATT:10$
HOLD:title$ 
COMM:/^9*$/ s/^/0/
PATT:10$
HOLD:title$
COMM:s/.9*$/x&/
PATT:1x0$
HOLD:title$
COMM:h
PATT:1x0$
HOLD:1x0$
COMM:s/^.*x//
PATT:0$
HOLD:1x0$
COMM:y/0123456789/1234567890/
PATT:1$
HOLD:1x0$
COMM:x
PATT:1x0$
HOLD:1$
COMM:s/x.*$//
PATT:1$
HOLD:1$
COMM:G
PATT:1\n1$
HOLD:1$
COMM:s/\n//
PATT:11$
HOLD:1$
COMM:h
PATT:11$
HOLD:11$
COMM::e
COMM:$ {
COMM:x
PATT:11$
HOLD:11$
COMM:p
11
PATT:11$
HOLD:11$
COMM:}
PATT:11$
HOLD:11$

省略号表示此处省略的输出行。其上带有“11”的行是输出最终计数的地方。这是您在未使用sedsed调试器时获得的唯一输出。

答案 1 :(得分:11)

我不认为sed是合适的,除非您在管道中使用它来转换文件,以便您需要的单词出现在单独的行上,然后使用grep -c来计算发生。

我喜欢Jonathan使用tr将空格转换为换行符的想法。这种方法的优点在于连续的空格被转换为多个空白行,但这并不重要因为grep只能计算单词“title”的行。

答案 2 :(得分:8)

修订答案

简洁地说,你不能 - sed不是工作的正确工具(它不能算)。

sed -n '/^title/p' file | grep -c

这会查找起始标题并打印它们的行,将输出提供给grep以计算它们。或者,等效地:

grep -c '^title' file

原始答案 - 在编辑问题之前

简洁地说,你不能 - 这不是正确的工具。

grep -c title file

sed -n /title/p file | wc -l

第二个使用sed作为grep的代理,并将输出发送到'wc'来计算行数。两者都计算包含“标题”的行数,而不是标题的出现次数。 你可以通过以下方式解决这个问题:

cat file |
tr ' ' '\n' |
grep -c title

'tr'命令将空格转换为换行符,从而将每个空格分隔的单词放在自己的行上,因此grep只计算包含单词title的行。除非你有'title-entitlement'这样的序列,否则两个标题的出现之间没有空格。

答案 3 :(得分:3)

只需要一个gawk命令即可。不要使用grep -c,因为它只计算带有“title”的行,无论行中有多少“title”。

$ more file
#         title
#  title
one
two
#title
title title
three
title junk title
title
four
fivetitlesixtitle
last

$ awk '!/^#.*title/{m=gsub("title","");total+=m}END{print "total: "total}' file
total: 7

如果您只想将“title”作为第一个字符串,请使用“==”而不是〜

awk '$1 == "title"{++c}END{print c}' file

答案 4 :(得分:3)

sed 's/title/title\n/g' file | grep -c title

答案 5 :(得分:2)

这可能对您有用:

sed '/^title/!d' file | sed -n '$='