Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

LoadRunner grep statements for errors (See related posts)

grep -rnE "Error|Warning|error|warning" * | grep \.html  | grep "<TITLE>Error"

grep -rnEA10 "Error|Warning|error|warning" * | grep \.html  | grep -E "<b>"

grep -rnEA200 "0\-0" * | grep \.html | grep -E "advertiserId"

You need to create an account or log in to post comments to this site.


Click here to browse all 4857 code snippets

Related Posts