From d19dd331c3948e752876429fede5deb10982b5eb Mon Sep 17 00:00:00 2001 From: thewhiteh4t Date: Tue, 10 Aug 2021 22:15:03 +0530 Subject: [PATCH] install script updated Former-commit-id: e64b0c8a02a776556cc184ebc277c0b300bfac68 --- install.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/install.sh b/install.sh index 29ed2b5..db9adeb 100755 --- a/install.sh +++ b/install.sh @@ -1,2 +1,17 @@ +echo +echo "> This script will install dependencies and configuration file" +echo +echo "> If you encounter any error please fix them before using the tool" +echo +echo "[!] Installing Requests..." +echo "--------------------------" +pip3 install requests +echo "--------------------------" + +echo "[!] Creating Directory : $HOME/.config/pwnedornot" mkdir -p $HOME/.config/pwnedornot + +echo "[!] Copying config.json..." cp config.json $HOME/.config/pwnedornot/config.json + +echo "[+] DONE" \ No newline at end of file