mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-24 14:27:57 +02:00
16 lines
156 B
Plaintext
16 lines
156 B
Plaintext
trap 'rm -f $HISTFILE' 0 1 2 3 6 15
|
|
|
|
HISTFILE=foohist-$$
|
|
unset HISTIGNORE HISTCONTROL
|
|
set -o history
|
|
|
|
history -c
|
|
cat <<!
|
|
one
|
|
two
|
|
three
|
|
!
|
|
|
|
history
|
|
fc -s cat
|