sed '/^.* shareId=.*/s/shareId=.*/ /g'

任意包含shareId=的行执行/s操作,行内所有匹配shareId=.*正则表达式的替换成一个空格
05-07 15:47