mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 23:53:18 +02:00
24 lines
212 B
Plaintext
24 lines
212 B
Plaintext
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
|