How does sed 's/"//g' web_server.log remove quote characters?
sed 's/"//g' web_server.log
It deletes every line that contains a quote
It substitutes every " on each line with an empty string
"
It removes only the first quote in the entire file
It replaces every quote with the letter g
g