I want to replace fw[" with fw..
I have tried couple of sed commands, but couldn't solve the issue.
I tried cut command, tr and sed commands. But since the characters I like to replace are special characters, I get lot of errors.
This is my input:
endpoint.os.version="Windows 10"
endpoint.fw["MSWindowsFW"].version="10.0"
endpoint.av["AlwilAV"].version="11.1.2253"
endpoint.os.hotfix["KB3116278"]="true"
This is the output I want:
endpoint.os.version="Windows 10"
endpoint.fw.MSWindowsFW.version="10.0"
endpoint.av["AlwilAV"].version="11.1.2253"
endpoint.os.hotfix["KB3116278"]="true"
Can you help me to write such a transform?