improved POSIX

This commit is contained in:
2026-03-17 14:00:07 +01:00
parent ea16fb03d5
commit ce9f16e293
6 changed files with 22 additions and 21 deletions

View File

@@ -1,5 +1,6 @@
if [ ! "${HISTORY_LOADED:-}" ]; then
export NMFHIST=$(mktemp)
NMFHIST="$(mktemp)"
export NMFHIST
touch "$NMFHIST"
trap 'rm -f "$NMFHIST"' EXIT INT