Even gezocht, bedoel je zoiets?

Code:
#!/bin/bash

echo "We will now start installing the tools"
echo ""
echo ""
echo ""
echo ""
echo ""
echo "Would you like to install the default tool package n/Y?"
echo "If you decided not to install the default package you will be prompted for each indvidual tool"
read a
if [[ $a == "Y" || $a == "y" ]]; then

  echo "Installing the default pentest tool package"
  yum install p0f
  yum install nbtscan


else
  echo "You will now be prompted to install the "normal" tool list on an individual basis"
  echo ""
  echo "To speed the process, the default is YES (Just hit enter or y), otherwise hit n to NOT install the specified tool"
  echo ""
  echo ""
  echo "Starting the individual install process"
  echo ""
  echo ""

  echo "P0f v2 is a versatile passive OS fingerprinting tool. P0f can identify the system on machines that talk thru or near your box. p0f will also check masquerading and firewall presence, the distance to the remote system and its uptime, other guy's network hookup (DSL, OC3, avian carriers) and his ISP."
  echo ""
  echo ""
  echo "Would you like to install p0f? n/Y?"
  read a
  if [[ $a == "N" || $a == "n" ]]; then

    echo "p0f will not be installed."
  else
    echo "Installing p0f"

    echo "NBTscan is a program for scanning IP networks for NetBIOS name information. It sends a NetBIOS status query to each address in supplied range and lists received information in human readable form. "
    echo ""
    echo ""
    echo "Would you like to install Nbtscan n/Y"
    read a
    if [[ $a == "N" || $a == "n" ]]; then
      echo "Nbtscan will not be installed."
    else
      echo "Installing Nbtscan"

      yum install -y nbtscan
    fi
  fi
fi