diff options
Diffstat (limited to 'tests/histexp1.sub')
-rw-r--r-- | tests/histexp1.sub | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/histexp1.sub b/tests/histexp1.sub new file mode 100644 index 0000000..a5948f1 --- /dev/null +++ b/tests/histexp1.sub @@ -0,0 +1,23 @@ +LC_ALL=C +LANG=C + +set -o history +set -H + +echo '!' +echo "!" +echo ! + +echo "$( echo '!' )" +echo "$( echo "!" )" +echo "$( echo ! )" + +echo $( echo '!' ) +echo $( echo "!" ) +echo $( echo ! ) + +echo "$( echo "\!" )" +echo "\!" + +echo "$( echo '\!' )" +echo '\!' |