I have the following input:
Value1|Value2|Value3|Value4@@ Value5|Value6|Value7|Value8@@ Value9|etc...
In my bash script I would like to replace
This will work
sed 's/@@ /\n/g' filename
replaces @@ with new line
@@