Added GNU Octave run conditions (#575)

This commit is contained in:
Luke Bubar
2020-04-15 19:58:20 -04:00
committed by GitHub
parent 0242d8428d
commit bdbf0d8382

View File

@@ -32,6 +32,7 @@ case "$file" in
*config.h) sudo make install ;;
*\.c) cc "$file" -o "$base" && "$base" ;;
*\.py) python "$file" ;;
*\.m) octave "$file" ;;
*\.go) go run "$file" ;;
*\.sent) setsid sent "$file" 2>/dev/null & ;;
*) sed 1q "$file" | grep "^#!/" | sed "s/^#!//" | xargs -r -I % "$file" ;;