Considere o seguinte shell script chamado test.sh.#!/bin/bas...

Próximas questões
Com base no mesmo assunto
Q4189233 Programação

Considere o seguinte shell script chamado test.sh.

#!/bin/bash v=$1 n=$2 t=$3 echo ${v:$n:$t}


Quando executado da seguinte maneira em um terminal


./test.sh test 1 2


a saída obtida será

Alternativas