“Substring If Declaração Script de shell variável” Respostas de código

Teste de substring Bash

#!/bin/bash

STR='GNU/Linux is an operating system'
SUB='Linux'
if [[ "$STR" == *"$SUB"* ]]; then
  echo "It's there."
fi
Wide-eyed Wren

Substring If Declaração Script de shell variável

if echo "$string" | grep 'foo'; then
  echo "It's there!"
fi
Unsightly Unicorn

Teste de substring Bash

#!/bin/bash

STR='GNU/Linux is an operating system'
SUB='Linux'

case $STR in

  *"$SUB"*)
    echo -n "It's there."
    ;;
esac
Wide-eyed Wren

Respostas semelhantes a “Substring If Declaração Script de shell variável”

Perguntas semelhantes a “Substring If Declaração Script de shell variável”

Mais respostas relacionadas para “Substring If Declaração Script de shell variável” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código