Files
bash/tests/histexp6.sub
2018-09-17 15:10:56 -04:00

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