fork download
  1. #!/bin/bash
  2. s='mystring\"'
  3. sed -e 's/\([a-zA-Z0-9]\)\\"/\1 /g' <<< "$s"
  4. sed -e 's/\([[:alnum:]]\)\\"/\1 /g' <<< "$s"
Success #stdin #stdout 0s 19632KB
stdin
Standard input is empty
stdout
mystring 
mystring