10 lines
160 B
Bash
10 lines
160 B
Bash
#!/bin/sh
|
|
LOGFILE=log.txt
|
|
|
|
matlab -nodesktop -nosplash -wait -noFigureWindows -logfile "$LOGFILE" -r Git_MATLAB_interface;
|
|
CODE=$?
|
|
|
|
#cat "$LOGFILE"
|
|
|
|
exit $CODE
|