- LinuxShell no LinuxShell ScriptEstruturas de Controle em Shell Script
- LinuxShell no LinuxShell ScriptVariáveis em Shell Script
Dado o seguinte script:
#!/bin/bash
a=9
b=2
[ $a -lt $b ] && echo $((a/b))
echo “FIM”
Após sua execução, a saída impressa no terminal é: