run.sh 93 B

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