fork download
  1. #!/bin/bash
  2. if [[ '?xml abc def?' =~ \?xml[[:space:]]*(.*)\? ]]; then
  3. echo "${BASH_REMATCH[1]}";
  4. fi
Success #stdin #stdout 0s 5096KB
stdin
Standard input is empty
stdout
abc def