通过shell脚本搜索字符串

时间:2014-07-02 06:58:28

标签: string shell search

我有一个文件为:

value=abc

abc

def

我想搜索第二行中的abc,而不是通过shell脚本搜索第一行中的abc。我可以帮忙吗?

先谢谢。

1 个答案:

答案 0 :(得分:2)

在文件中“第一行”以外的行中获取“abc”:

假设Solaris:

awk "NR>1 {print}" /path/to/file| /usr/sfw/bin/ggrep -o "abc"

假设Unix

awk "NR>1 {print}" /path/to/file| egrep -o "abc"