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 ~/binAdd the ~/bin folder to your path.
#open your .zshrc file or .bashrc file
cd ~
nano .zshrcAdd 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 changedThe following command to move the file to the ~/bin/ directory:
mv auto ~/bin/