• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Grep / Awk / Sed help

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    Grep / Awk / Sed help

    I have several thousand xml files I need to search for a particular string. Easy enough but I want to output the string as found as values can be different. Example

    <SystemId>some value here</SystemId>

    Any ideas how to achieve this?

    #2
    grep -w "<SystemId>" /filename.xml
    Originally posted by Stevie Wonder Boy
    I can't see any way to do it can you please advise?

    I want my account deleted and all of my information removed, I want to invoke my right to be forgotten.

    Comment

    Working...
    X