summaryrefslogtreecommitdiff
path: root/ckt0.sh
diff options
context:
space:
mode:
authorwukong <wukong@longaeva>2026-02-05 18:32:37 -0800
committerwukong <wukong@longaeva>2026-02-05 18:32:37 -0800
commit8ce173c7336ea4d2de07e3890c2c4b073b84bf5c (patch)
tree1a3e0ec6c15286c19eb2b83cd1738ff71fd16bec /ckt0.sh
parentda75b254792028dbf1a09aa667c0f810443a86e4 (diff)
moved saved state file to /tmp, which is a ramdisk/tmpfs mount point;
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