简体   繁体   中英

How to count exact match of certain patterns in a text file using linux shell command?

I want to find the count of certain pattern in a text file which contains lot of mixed patterns also using linux shell command.

I have a text file which contains below patterns,

[--------------]

[+--------------+]

[+----------+------------+--------------------+]

[+---------------------+---------------------+]

How to find exact count of only first pattern [--------------] ?

Note: Don't include square bracket as a pattern. Only special character inside square bracket is a pattern.

cat ./file | sed -e 's/\\]/\\]\\n/' |grep "\\[--------------\\]" -c

cat reads file
sed replace ] with ]\\n
grep searches every line for your expression and prints the number of lines -c

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM