Bash Scripting - Conditionals
What will this script print?
#!/bin/bash x=7 if [ $x -le 7 ]; then echo "Yes" fi
#!/bin/bash x=7 if [ $x -le 7 ]; then echo "Yes" fi
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions