git clone https://github.com/h4ckdk/Bash_Script.git
cd Bash_Script
chmod +x auto.sh
./auto.sh
To create a directory within your home directory in the terminal.
mkdir ~/bin
Add the ~/bin folder to your path.
#open your .zshrc file or .bashrc file
cd ~
nano .zshrc
Add code to the end of the line in a .zshrc file
if [ -d ~/bin ]
then
PATH=$PATH:~/bin
fi
git clone https://github.com/h4ckdk/Bash_Script.git
cd Bash_Script
chmod +x auto.sh
mv auto.sh auto #file name changed
The following command to move the file to the ~/bin/ directory:
mv auto ~/bin/