Files
bash/tests/histexp6.sub
T
2018-07-09 10:35:17 -04:00

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