I have a string which looks something like
/6435045045/hpdqbhflyuhv_EOlXG
I want to corrupt the string by changing a few characters. I did
$string | sed 's/E/A/g'
it worked fine but the string is dynamic and now the string is generated without an 'E' in it. Is it possible to corrupt the string by replacing first x characters with some random x characters using bash ??