A non-exhaustive list of compile/run files for common languages.
compile
No compile file required
run
#!/bin/bash
/usr/local/bash-4.4/bin/bash hello.sh
compile
#!/bin/bash
/usr/local/gcc-9.2.0/bin/gcc -c hello.c -o hello
run
#!/bin/bash
./hello
compile
#!/bin/bash
make
run
#!/bin/bash
./hello
compile
#!/bin/bash
/usr/local/gcc-9.2.0/bin/g++ hello.cpp