shell-script-pt
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [shell-script] help case com maiusculas e minusculas ( era Help Whi


From: Fabricio
Subject: Re: [shell-script] help case com maiusculas e minusculas ( era Help While )
Date: Thu, 25 Aug 2005 08:11:32 -0300
User-agent: Mozilla Thunderbird 1.0.6-1.1.fc4 (X11/20050720)

[root@localhost scripts]# ./maiscula a
minuscula!
[root@localhost scripts]# ./maiscula A
minuscula!
[root@localhost scripts]# ./maiscula b
minuscula!
[root@localhost scripts]# ./maiscula B
minuscula!
[root@localhost scripts]# cat maiscula
#!/bin/bash

case $1 in
[a-z]) echo "minuscula!" ;;
[A-Z]) echo "maiscula!!" ;;
esac



estranho O_o


reply via email to

[Prev in Thread] Current Thread [Next in Thread]