if you use
#! /bin/zsh
$MYVAR=”Hello world”
if [[ $MYVAR == *”hello”*]] then
echo “FOUND”
fi
If we don’t use #! /bin/zsh
$MYVAR=”Hello world”
if [[ $MYVAR == *”hello”*]]; then
echo “FOUND”
fi
if you use
#! /bin/zsh
$MYVAR=”Hello world”
if [[ $MYVAR == *”hello”*]] then
echo “FOUND”
fi
If we don’t use #! /bin/zsh
$MYVAR=”Hello world”
if [[ $MYVAR == *”hello”*]]; then
echo “FOUND”
fi
Designed using Responsive Brix. Powered by WordPress.