blob: 03a4eb2c9a23baa8f25981d01b60b8c957e8ff2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# $FreeBSD$
# Shells do not agree about what this pattern should match, but it is
# certain that it must not crash and the missing close bracket must not
# be simply ignored.
case B in
[[:alpha:]) echo bad ;;
esac
|