I have a question concerning the manipulation of a text file. I have something like this
any text keyword 21 any text 32 any text
any text keyword 12 any text keyword 12 any text 23 any text
any text keyword 34 any text (keyword 45) any text (34) any text
now I wonder if I can grep/awk/sed/vi/.. somehow to add constants after the keyword? For example I want to add e. g. a value of 10 to every integer after keyword but leaving the other numbers and the file format the same?
any text keyword 31 any text 32 any text
any text keyword 22 any text keyword 22 any text 23 any text
any text keyword 44 any text (keyword 55) any text (34) any text
Sorry, I did not find anything so far...

keyword NAN? – ДМИТРИЙ МАЛИКОВ Jan 3 at 16:04$i += 10, you could doif ($i!=34) { $i += 10 }. – Vaughn Cato Jan 3 at 17:04