run linux?
try this script:
for X in {A..Z} {a..z} ; do
case $X in
[A-Z]) echo "$X is a capital letter" ;;
[a-z]) echo "$X is a lowercase letter" ;;
esac
done
that's right... linux can't tell the difference between a capital and a lowercase letter. this is broken in ubuntu, and fedora core...
(
Read more... )