sed 's/"//g' web_server.log 如何删除引号字符?
sed 's/"//g' web_server.log
只删除整个文件中的第一个引号
删除所有包含引号的行
将每一行中的所有 " 替换为空字符串
"
将每个引号替换为字母 g
g