From 838074d4d5a794d4f83cffc3a11eeab3af5cbc96 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Argos=29?=
 <stepan@adjemian.eu>
Date: Wed, 3 Jul 2024 06:18:19 +0200
Subject: [PATCH] Rename log files.

Otherwise they are overwritten by each dynare call.
---
 models/run.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/models/run.sh b/models/run.sh
index 8db1742..4b15246 100755
--- a/models/run.sh
+++ b/models/run.sh
@@ -2,15 +2,15 @@
 
 while [ ! -f m10-done.info ]
 do
-    matlab -batch "MODELS=1; compute_transition;" |& tee -a m10.log
+    matlab -batch "MODELS=1; compute_transition;" |& tee -a m10-all.log
 done
 
 while [ ! -f m20-done.info ]
 do
-    matlab -batch "MODELS=2; compute_transition;" |& tee -a m20.log
+    matlab -batch "MODELS=2; compute_transition;" |& tee -a m20-all.log
 done
 
 while [ ! -f m30-done.info ]
 do
-    matlab -batch "MODELS=3; compute_transition;" |& tee -a m30.log
+    matlab -batch "MODELS=3; compute_transition;" |& tee -a m30-all.log
 done
-- 
GitLab