# we accept args from commandline and print it to the screen # define args1=$1 args2=$2
# print echo"using $ { } to get the value of val, what we receive is : ${args1} and ${args2}" echo"$ can also show : $args1 and $args2"
# we can make those statement in a string, which may transfer to its value echo"using $ / {} in a string can also get the value like $args1 and $args2" echo'using $ / {} in a string single quotes cannot get the value like $args1 and $args2'