Bash Scripting - Basics
Find the error in this script:
#!/bin/bash echo "Enter your name:" read name echo "Hello $Name"
#!/bin/bash echo "Enter your name:" read name echo "Hello $Name"
name and Name differ.$Name will be empty if not set; should use $name.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions