Answers for "substring if statement variable shell script"

2

bash substring test

#!/bin/bash

STR='GNU/Linux is an operating system'
SUB='Linux'
if [[ "$STR" == *"$SUB"* ]]; then
  echo "It's there."
fi
Posted by: Guest on June-29-2020
0

substring if statement variable shell script

if echo "$string" | grep 'foo'; then
  echo "It's there!"
fi
Posted by: Guest on October-29-2020
0

substring if statement variable shell script

string="My string"
Posted by: Guest on October-29-2020
0

bash substring test

#!/bin/bash

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

case $STR in

  *"$SUB"*)
    echo -n "It's there."
    ;;
esac
Posted by: Guest on June-29-2020
-1

substring if statement variable shell script

if [ $string ?? 'foo' ]; then
  echo "It's there!"
fi
Posted by: Guest on October-29-2020

Code answers related to "substring if statement variable shell script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language