]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/histexp6.sub
bash-5.0 distribution sources and documentation
[thirdparty/bash.git] / tests / histexp6.sub
1 unset HISTIGNORE
2 HISTFILE=$TMPDIR/bashhist-$$
3
4 set -o history
5 set -o histexpand
6
7 echo one
8
9 for f in a b c; do
10 echo !!
11 done
12
13 history
14 history -c
15
16 echo two
17 for f in a b c; do
18 echo !-1
19 done
20
21 history
22
23 set +o history
24 rm -f $HISTFILE