]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/alias3.sub
bash-5.1 distribution sources and documentation
[thirdparty/bash.git] / tests / alias3.sub
CommitLineData
d233b485
CR
1shopt -s expand_aliases
2alias foo='oneword'
3foo_word='foo'
4#
5# Fails silently to match 'foo':
6#
7case "$foo_word"
8in
9 foo) ;;
10 *) echo bad 1;;
11esac