fork download
  1. #!/bin/bash
  2. s='1,2,"a",4,"b","c",5'
  3. sed 's/"[^"]*"//g' <<< "$s"
Success #stdin #stdout 0s 4188KB
stdin
Standard input is empty
stdout
1,2,,4,,,5