mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-25 23:03:09 +02:00
19 lines
218 B
Plaintext
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
|