Tmux Cheat Sheet
Hello Bytium #!/usr/bin/bash #This is Comment echo "Hello Bytium" printf "Hello Bytium" Save as hello.sh , give it execute permission chmod +x hello.sh and run ./hello.sh Parameters #!/usr/bin/bash #This is Comment echo -e "Hello $1" printf "Hey, how is it goin $1?" echo "" $1 is the first parameters, second parameters should be $2 and so on. Variables Variables used to store data to use in future by referencing to the variable name!...