fork download
  1. #!/bin/bash
  2.  
  3. line=$(echo -e 'Value1\nValue2\nValue3')
  4. line="${line//$'\n'/bla}"
  5.  
  6. echo "$line"
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Value1blaValue2blaValue3