✍️ Code with expresions
- arithmetic:
+,-,x,/,% - relational:
><(likeif) - logical:
-a,-o
✍️ Command Line Arguments
1
$sh hello.sh how are you
$0 filename
$1 first argument
$2 second argument
$# number of arguemnts
In the nano, ^ means Control
✍️ nano
1
$sh second.sh 1 2 3 4 5 6 7 8


