fork(3) download
  1. #!/bin/bash
  2. s="abc-dirk-alt.avi"
  3. rx="-([^-]*)-"
  4. if [[ $s =~ $rx ]]; then
  5. echo ${BASH_REMATCH[1]};
  6. fi
Success #stdin #stdout 0s 19648KB
stdin
Standard input is empty
stdout
dirk