mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-06 18:22:25 +02:00
bash-5.0 distribution sources and documentation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
shopt -s expand_aliases
|
||||
alias foo='oneword'
|
||||
foo_word='foo'
|
||||
#
|
||||
# Fails silently to match 'foo':
|
||||
#
|
||||
case "$foo_word"
|
||||
in
|
||||
foo) ;;
|
||||
*) echo bad 1;;
|
||||
esac
|
||||
Reference in New Issue
Block a user