feat(ux): show temp log file paths after YES confirmation in all scripts

After the user confirms with YES, each script now prints the paths of
the two temporary files that are written continuously during the run,
so they can be monitored with tail -f without having to know the paths
by heart. Affects scan_, recover_, restore_, recreate_bad_signature.sh.
recreate shows per-account log file names since it writes one per user.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GfXh5sRbEaXiEX6KjAPivc
This commit is contained in:
2026-09-16 09:20:55 +02:00
co-authored by Claude Sonnet 4.6
parent eef48a9c8d
commit 8bfc4d04b7
4 changed files with 48 additions and 0 deletions
+12
View File
@@ -1181,6 +1181,18 @@ if $terminal ; then
fi
fi
if $terminal ; then
echo ""
echo -e " \033[1mTemporäre Dateien – werden laufend aktualisiert:\033[m"
echo ""
echo -e " Fortschritt / Debug-Meldungen (PHP-Ausgabe auf STDERR):"
echo -e " \033[1mtail -f ${log_file}\033[m"
echo ""
echo -e " Rohergebnis pro Account (PHP-Ausgabe auf STDOUT, Datei für Datei):"
echo -e " \033[1mtail -f ${LOCK_DIR}/result_<account>.tsv\033[m"
echo ""
fi
{
echo "=================================================================="