You are viewing a single comment's thread. Return to all comments →
#! /bin/bash read X if [ "$X" = "y" ] || [ "$X" = "Y" ]; then echo "YES" elif [ "$X" = "n" ] || [ "$X" = "N" ]; then echo "NO" fi
Seems like cookies are disabled on this browser, please enable them to open this website
Getting started with conditionals
You are viewing a single comment's thread. Return to all comments →