Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7696781
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T21:51:35+00:00 2026-05-31T21:51:35+00:00

I search a tool(chain) (sed/bash/…) in Linux, to achieve the following: Go through a

  • 0

I search a tool(chain) (sed/bash/…) in Linux, to achieve the following: Go through a text file (here: XML) find same values, check these values for some rule and correct these values by adding an offset.

A example would be:

<!--Origin.txt-->
<Tree>
  <Node foo="600" bar="50" />
  <Node foo="-300" bar="600" />
</Tree>

I now wan’t to ignore bar completely, but check if e.g. foo is smaller than zero. If it is, add 1000 to foo. If not, leave it.

<!--Output.txt-->
<Tree>
  <Node foo="600" bar="50" />
  <Node foo="700" bar="600" />
</Tree>

I could write a small python/java program, but I bet there is a faster bash/sed/… script to do this 😉

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T21:51:36+00:00Added an answer on May 31, 2026 at 9:51 pm

    open your file with vim, then type:

    :%s/foo="\zs\(-[0-9]\+\)"\ze/\=submatch(1)+1000/g
    

    it should do the job 4 u.

    EDIT

    awk oneliner works for your new requirement.

     awk '{for(i=1;i<=NF;i++)
    if($i~/foo="/){ split($i,x,"\""); x[2]=x[2]<100?x[2]+1000:x[2]; $i="foo=\""x[2]"\""; }}1' yourFile
    

    in above oneliner, the criteria is the foo attribute value <100. you can add criterias as you wish. like (x[2]>100 && x[2]<700)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a tool to automatically search through my site and test all the
What GNU/Linux command-line tool would I use for performing a search and replace on
I need a regular expression that will find me the following text: postmaster=infonl@bostik.com info=infonl@bostik.com
I have a view I'm using as an Advanced Search tool - it simply
I am trying to figure out how the search tool in a web browser
Is there a way or tool for Vista I can use to search for
Shoes is very handy GUI tool. I would like to do a search form
Is there some sort of profiling tool available? View source and search/replace?
In building a C++ project with the GNU tool chain, make tells me ~
i'm developing web search tool for college search... tool should support to search college...

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.