Update external_pentest.sh

This commit is contained in:
2025-01-13 21:47:42 +00:00
parent ed6a6622f6
commit 71a47daf6d

View File

@@ -17,6 +17,7 @@ for dependency in "${dependencies[@]}"; do
read -p "Do you want to install it now? [y/n] " install_choice
if [[ "$install_choice" =~ ^[Yy]$ ]]; then
# Install the dependency (replace with appropriate command for your system)
sudo apt-get update
sudo apt-get install "$dependency" # Example for Debian/Ubuntu
echo -e "\e[1;32m Finished installing dependencies, Starting Script \e[0m"
sleep 2.5