I'm trying to learn shell scripts and try to create a user-defined variable in the script, first:
howdy="Hello $USER !"
echo $howdy
However, when I execute script ( ./first), I get the following:
howdy=Hello aaron!: Command not found.
howdy: Undefined variable.
What am I doing wrong?
source
share