fork download
  1. {gsub(/^"|"$/,"") } # this part removes all the "s from the start and end of line
  2. /^WHAT/ { print }
Success #stdin #stdout 0s 23336KB
stdin
"WHAT thing"
"Which thong"
"WHAT another line
"WHAT NOT LINE"
WHAT NO STARTING"
stdout
WHAT thing
WHAT another line
WHAT NOT LINE
WHAT NO STARTING