0

我正在使用以下给定的步骤来查找<heading多次出现的标签的位置。但我只需要第一次出现的位置。

我正在使用 cygwin 工具在 Windows 中执行此 shell 脚本

transformationTag=`grep -nE "<heading " "$xmlFile"|cut -d ":" -f1`

这将给出如下输出:17 24 46

从此,我怎样才能17只检索?

4

1 回答 1

0

一种方法是将其通过管道head

transformationTag=`grep -nE "<heading " "$xmlFile"|cut -d ":" -f1 | head -1 `
于 2013-03-15T11:56:41.293 回答