fork(1) download
  1. #!/bin/bash
  2. sed ':0
  3. /^\([^"]*,"[^,"]*\),/{
  4. s//\1/
  5. b0
  6. }'
Success #stdin #stdout 0.01s 5312KB
stdin
1,2,3,"test1,test2,test3",4,5,6
stdout
1,2,3,"test1test2test3",4,5,6