run.sh 95 B

123456789
  1. #!/usr/bin/bash
  2. OUT="$(mktemp)"
  3. g++ -o "$OUT" -xc++ -
  4. if [ -f $OUT ]; then
  5. exec "$OUT"
  6. fi