diff options
| author | wukong <wukong@longaeva> | 2026-02-05 18:32:37 -0800 |
|---|---|---|
| committer | wukong <wukong@longaeva> | 2026-02-05 18:32:37 -0800 |
| commit | 8ce173c7336ea4d2de07e3890c2c4b073b84bf5c (patch) | |
| tree | 1a3e0ec6c15286c19eb2b83cd1738ff71fd16bec /ckt0.sh | |
| parent | da75b254792028dbf1a09aa667c0f810443a86e4 (diff) | |
moved saved state file to /tmp, which is a ramdisk/tmpfs mount point;
Diffstat (limited to '')
| -rw-r--r-- | ckt0.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
