and thanks in advance. I have a huge database where all lines start like this:
(497, 36390, 495, 88, 89, 2, 'xxdurango/a-...
(498, 36391, 1, 93, 100, 1, 'xxsalamanca...
(499, 36392, 498, 94, 95, 2, 'xxsalamanca/noti...
(500, 36393, 498, 96, 97, 2, 'xxsalama...
(501, 36394, 1, 101, 108, 1, 'xxg...
I need to change the third column after (#, #,
I am trying to use grep <.,.,> <(.,.,>
all this grep commands select other values in the lines.
I want to make a search and replace (using BBEdit), all of the third column needs to change to the same value.
Need to search for: begining of line,+ numeral1 (,) numeral2(,)
Or something like: begining of line, 3digit number (,) four digit number (,)
Any hint?
thanks