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