mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 21:07:57 +02:00
25 lines
229 B
Plaintext
25 lines
229 B
Plaintext
unset HISTIGNORE
|
|
HISTFILE=$TMPDIR/bashhist-$$
|
|
|
|
set -o history
|
|
set -o histexpand
|
|
|
|
echo one
|
|
|
|
for f in a b c; do
|
|
echo !!
|
|
done
|
|
|
|
history
|
|
history -c
|
|
|
|
echo two
|
|
for f in a b c; do
|
|
echo !-1
|
|
done
|
|
|
|
history
|
|
|
|
set +o history
|
|
rm -f $HISTFILE
|