Files
bash/tests/histexp6.sub
T
2019-01-07 09:27:52 -05: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