Friday, March 11, 2022

Read input and condition logic based on that

 read -p "Do you want to create VMs as well:" CHOICE

if [ $CHOICE = "Yes" || $CHOICE = "yes" ]

then

echo "Came to this logic"

fi

No comments:

Post a Comment