fork(9) download
  1. #!/bin/bash
  2.  
  3. CONFIGURATION=m1si-ngxi-ddb01
  4. #check configuration format
  5. TMP_CONFIGURATION=",$CONFIGURATION"
  6. re=',[a-zA-Z0-9_.-]+'
  7. if ! [[ $TMP_CONFIGURATION =~ $re ]]
  8. then
  9. echo "configuration parttern mismatch."
  10. exit 1
  11. fi
Success #stdin #stdout 0s 19648KB
stdin
Standard input is empty
stdout
Standard output is empty