o que significa shell ler argumentos da linha de comando $ {1 ,}

0

No código de script do Shell, os argumentos da linha de comando atribuídos à variável, como abaixo. o que significa vírgula (,) na declaração. Qual será a diferença quando a vírgula for adicionada duas vezes ao ler os argumentos da linha de comando no script Bash.

#!/bin/bash
var1=${1,,}
var2=${2,,}

./script.sh value1 value2
    
por arunp 09.10.2017 / 14:29

2 respostas

4

É uma expansão de parâmetro chamada Modificação de caso (consulte man bash ).

$var1 conterá o primeiro argumento com todos os caracteres convertidos em minúsculas. Único , mudaria apenas o primeiro caractere do parâmetro.

Você pode especificar um padrão para cada caractere após as vírgulas, por exemplo, a seguir apenas vogais em letras minúsculas:

x=$(echo {A..Z})
echo ${x,,[AEIOU]}

Saída:

a B C D e F G H i J K L M N o P Q R S T u V W X Y Z

Simetricamente, você pode usar ^ para converter em maiúsculas.

    
por 09.10.2017 / 14:37
2
man bash | grep -B1 -A10 ,,
       ${parameter,pattern}
       ${parameter,,pattern}
              Case modification.  This expansion modifies the case  of  alpha‐
              betic  characters in parameter.  The pattern is expanded to pro‐
              duce a pattern just as in pathname expansion.  Each character in
              the  expanded value of parameter is tested against pattern, and,
              if it matches the pattern, its case is converted.   The  pattern
              should  not  attempt  to  match  more than one character.  The ^
              operator converts lowercase letters matching pattern  to  upper‐
              case; the , operator converts matching uppercase letters to low‐
              ercase.  The ^^ and ,, expansions convert each matched character
              in  the expanded value; the ^ and , expansions match and convert
              only the first character in the expanded value.  If  pattern  is
              omitted,  it is treated like a ?, which matches every character.
              If parameter is @ or  *,  the  case  modification  operation  is
              applied  to each positional parameter in turn, and the expansion
              is the resultant list.  If parameter is an array  variable  sub‐
              scripted with @ or *, the case modification operation is applied
              to each member of the array in turn, and the  expansion  is  the
              resultant list.
    
por 09.10.2017 / 14:36