
Enviado em 29/11/2017 - 23:43h
if [ [$2 = "help" ] -o [ [$# -eq 1] -a [$1 = "help" ] ] ]; then
echo "$0 'Arquivo' 'Tipo'"
echo -e "\nTipos { gcc, latex }"
fi
paulo@notebook:~$ type test
test is a shell builtin
paulo@notebook:~$ type [
[ is a shell builtin
paulo@notebook:~$ type ]
bash: type: ]: not found
if [ \( $2 = "help" \) -o \( $# -eq 1 -a $1 = "help" \) ]; then
echo "$0 'Arquivo' 'Tipo'"
echo -e "\nTipos { gcc, latex }"
fi
if [ \( "$2" = "help" \) -o \( $# -eq 1 -a "$1" = "help" \) ]; then
echo "$0 'Arquivo' 'Tipo'"
echo -e "\nTipos { gcc, latex }"
fi
if [ "$2" = "help" ] || [ $# -eq 1 ] && [ "$1" = "help" ]; then
echo "$0 'Arquivo' 'Tipo'"
echo -e "\nTipos { gcc, latex }"
fi
if [ "$2" = "help" ] || { [ $# -eq 1 ] && [ "$1" = "help" ] ; } ; then
echo "$0 'Arquivo' 'Tipo'"
echo -e "\nTipos { gcc, latex }"
fi
IA Turbina o Desktop Linux enquanto distros renovam forças
Como extrair chaves TOTP 2FA a partir de QRCODE (Google Authenticator)
Linux em 2025: Segurança prática para o usuário
Desktop Linux em alta: novos apps, distros e privacidade marcam o sábado
Atualizando o Fedora 42 para 43
Como saber se o seu e-mail já teve a senha vazada?
Como descobrir se a sua senha já foi vazada na internet?
E aí? O Warsaw já está funcionando no Debian 13? [RESOLVIDO] (15)
Secure boot, artigo interessante, nada técnico. (4)
copiar library para diretorio /usr/share/..... su com Falha na a... (1)









