I\'m trying to write a script which will read two choices, and if both of them are \"y\" I want it to say \"Test Done!\" and if one or both of them isn\'t \"y\" I want it to
if [ "$choice" != 'y' -a "$choice1" != 'y' ]; then echo "Test Done !" else echo "Test Failed !" fi