From d70f5debf713dfdf15049178435de8ff8d6c2fd1 Mon Sep 17 00:00:00 2001 From: hackerpain <61242234+hackerpain@users.noreply.github.com> Date: Mon, 16 Mar 2020 16:45:41 +0530 Subject: [PATCH] Updated install script to ease out the bash_profile creation Downloading the bash_profile to ~/ w/o having to clone the entire recon_profile repo. Simpler? --- install.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install.sh b/install.sh index e203de7..86d27c1 100644 --- a/install.sh +++ b/install.sh @@ -19,9 +19,7 @@ sudo apt-get install -y rename sudo apt-get install -y xargs echo "installing bash_profile aliases from recon_profile" -git clone https://github.com/nahamsec/recon_profile.git -cd recon_profile -cat bash_profile >> ~/.bash_profile +cd ~ && wget https://raw.githubusercontent.com/nahamsec/recon_profile/master/.bash_profile # adding bash profile w/o cloning entire repo source ~/.bash_profile cd ~/tools/ echo "done"