Shell = Verifique se a variável começa com #

13

Eu ficaria agradecido se você pudesse me ajudar a descobrir como determinar se o conteúdo de uma variável começa com o sinal de hash:

#!bin/sh    

myvar="#comment asfasfasdf"

if [ myvar = #* ] 

isso não funciona.

Obrigado!

Jans

    
por jan 20.03.2011 / 01:10

4 respostas

17

Sua abordagem original funcionaria bem se você escapasse do hash :

$ [[ '#snort' == \#* ]]; echo $?
0

Outra abordagem seria cortar o primeiro caractere do conteúdo da variável, usando "Expansão de Substring":

if [[ ${x:0:1} == '#' ]]
then
    echo 'yep'
else
    echo 'nope'
fi

yep

Na página do manual do Bash:

   ${parameter:offset}
   ${parameter:offset:length}
          Substring  Expansion.   Expands  to  up  to length characters of
          parameter starting at the character  specified  by  offset.   If
          length  is omitted, expands to the substring of parameter start-
          ing at the character specified by offset.  length and offset are
          arithmetic   expressions   (see  ARITHMETIC  EVALUATION  below).
          length must evaluate to a number greater than or equal to  zero.
          If  offset  evaluates  to  a number less than zero, the value is
          used as an offset from the end of the value  of  parameter.   If
          parameter  is  @,  the  result  is  length positional parameters
          beginning at offset.  If parameter is an array name indexed by @
          or  *,  the  result is the length members of the array beginning
          with ${parameter[offset]}.  A negative offset is taken  relative
          to  one  greater  than the maximum index of the specified array.
          Note that a negative offset must be separated from the colon  by
          at  least  one  space to avoid being confused with the :- expan-
          sion.  Substring indexing is zero-based  unless  the  positional
          parameters are used, in which case the indexing starts at 1.
    
por 20.03.2011 / 01:33
10

Versão compatível com POSIX:

[ "${var%${var#?}}"x = '#x' ] && echo yes

ou:

[ "${var#\#}"x != "${var}x" ] && echo yes

ou:

case "$var" in
    \#*) echo yes ;;
    *) echo no ;;
esac
    
por 27.03.2011 / 17:12
5

Eu sei que isso pode ser heresia, mas para este tipo de coisas eu prefiro usar grep ou egrep ao invés de fazê-lo dentro do shell. É um pouco mais caro (eu acho), mas para mim a legibilidade desta solução compensa isso. É uma questão de gosto pessoal, claro.

Então:

myvar="   #comment asfasfasdf"
if ! echo $myvar | egrep -q '^ *#'
then
  echo "not a comment"
else
  echo "commented out"
fi

Funciona com ou sem espaços iniciais. Se você também quiser considerar as guias principais, use egrep -q '^ [\ t] * #'.

    
por 14.04.2011 / 16:36
0

Aqui está outra maneira ...

# assign to var the value of argument actual invocation
var=${1-"#default string"}

if [[ "$var" == "#"* ]]
then
  echo "$var starts with a #"
fi

Basta copiar e colar o conteúdo em um arquivo, conceder permissões de execução e observar como isso funciona;).

Espero que ajude!

Saudações.

    
por 07.05.2015 / 22:24

Tags