Em ambiente Linux, observa-se: 1. #!/bin/bash 2. i=3 3. k=...
Em ambiente Linux, observa-se:
1. #!/bin/bash
2. i=3
3. k=2
4. let j=k**i
5. echo $j
6. exit 0
Isso posto, ao executar o script bash acima, obter-se-á a seguinte saída:
Em ambiente Linux, observa-se:
1. #!/bin/bash
2. i=3
3. k=2
4. let j=k**i
5. echo $j
6. exit 0
Isso posto, ao executar o script bash acima, obter-se-á a seguinte saída: