Files
bash/tests/history8.sub
2025-06-02 12:05:51 -04:00

19 lines
218 B
Plaintext

trap 'rm -f "$OUT"' 0 1 2 3 6 15
HISTFILE=$TMPDIR/fchist-$$ ; OUT=$HISTFILE
unset HISTIGNORE HISTCONTROL
set -o history
echo a
echo b
echo c
echo d
history -d 2
history
history -d 72
history -d -72
unset HISTFILE