Would like to write a bash script that replaces some strings in a text file, however I am getting hung up on how to replace the contents inside a 'value' for a variable.
Suppose the value I wish to set inside a text file could be :
TCP_IN = "123,35,995"
.. where 123,35,995 could be any string (not just numbers with commas.
How could I replace this keypair searching for TCP_IN = "*" and set the value inside where * is, from within a bash script ?