IDE - Visual studio code

root@zllart3:~# cat /etc/shells
/bin/ash
/bin/bash
/bin/rbash
 #! /bin/bash
 echo "Hello World" #this is a comment after the "#"
 two types system and user variables
 system variables are predefined and are in capital letters
echo "Hello World" #this is a comment after the "#"
echo $BASH
echo $BASH_VERSION
echo $PWD
echo $HOME
echo Our shell name is $BASH
echo Our shell version name is $BASH_VERSION
echo Our home directory is $HOME
echo Our current working directory is $PWD
name=Mark
VALUE=10
echo The name is $name
echo value $VALUE