From 8ce173c7336ea4d2de07e3890c2c4b073b84bf5c Mon Sep 17 00:00:00 2001 From: wukong Date: Thu, 5 Feb 2026 18:32:37 -0800 Subject: moved saved state file to /tmp, which is a ramdisk/tmpfs mount point; --- ckt0.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ckt0.sh') 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 -- cgit v1.2.3