“substring if instruction shell variable shell script” Réponses codées

Test de sous-chaîne de 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 instruction shell variable shell script

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

Test de sous-chaîne de 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

Réponses similaires à “substring if instruction shell variable shell script”

Questions similaires à “substring if instruction shell variable shell script”

Plus de réponses similaires à “substring if instruction shell variable shell script” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code