summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ckt0.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ckt0.sh b/ckt0.sh
index 2983881..ecb46ae 100644
--- a/ckt0.sh
+++ b/ckt0.sh
@@ -13,8 +13,8 @@ set -e
# check for saved state
-if [ -f t0_est.log ] ; then {
- t0_est="$( cat t0_est.log )"
+if [ -f /tmp/t0_est.log ] ; then {
+ t0_est="$( cat /tmp/t0_est.log )"
} else {
t0_est=""
} fi
@@ -31,7 +31,7 @@ for N in $(seq 0 10080) ; do
done
-printf "${t0_est}\n" | tee t0_est.log
+printf "${t0_est}\n" | tee /tmp/t0_est.log
# [debug] disable execution tracing
set +x