Files
bash/tests/histexp4.sub
2016-02-23 11:23:40 -05:00

24 lines
234 B
Plaintext

HISTFILE=$TMPDIR/bashhist-$$
set -o history
set -o histexpand
echo a
cat < <(echo !!)
echo b
echo !! `echo !!`
echo c
echo "$(echo "!" )"
echo d
echo "$(echo '!' )"
echo e
echo '!' "!"
echo "'!'"
set +o history
rm -f $HISTFILE