Basic Bash Scripting
Begin with !/ and the bash location
!/usr/bash
extension .sh
Two possibility to run a bash script:
#1
bash script.sh
#2
./script.sh
bash script.sh One Two Three
#One, Two and Three are arguments. You can use then in the script
echo $1 #print f...
massyfigini.hashnode.dev3 min read