Skip to content
Snippets Groups Projects
Commit 37f5ebd4 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Write all outputs to a log file.

-> standard output and standard error streams.
parent d759023f
No related branches found
No related tags found
No related merge requests found
...@@ -2,15 +2,15 @@ ...@@ -2,15 +2,15 @@
while [ ! -f m10-done.info ] while [ ! -f m10-done.info ]
do do
matlab -batch "MODELS=1; compute_transition;" || echo "Matlab crashed. Skip this configuration and run next one." matlab -batch "MODELS=1; compute_transition;" |& tee -a m10.log
done done
while [ ! -f m20-done.info ] while [ ! -f m20-done.info ]
do do
matlab -batch "MODELS=2; compute_transition;" matlab -batch "MODELS=2; compute_transition;" |& tee -a m20.log
done done
while [ ! -f m30-done.info ] while [ ! -f m30-done.info ]
do do
matlab -batch "MODELS=3; compute_transition;" matlab -batch "MODELS=3; compute_transition;" |& tee -a m30.log
done done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment