"|" this is the symbol for pipe and we use it to pipe the output of a command.
-d stands for delimiter
-f stands for field
In this example after cat ip.txt | grep "64 bytes" then we | cut -d " "(we are delimiting the space character) -f 4(selecting field 4 after delimiting spaces) this is very common for finding IP Addresses.
Then to eliminate ":" we are using the tr (translate) command:
parameter_counter=0
whilegetopts"e:n:i:a:h:"arg;do
case$arg in
e) exploration_mode=$OPTARG;letparameter_counter+=1;;
n) number_output=$OPTARG;letparameter_counter+=1;;
i) inspect_transaction=$OPTARG;letparameter_counter+=1;;
a) inspect_address=$OPTARG;letparameter_counter+=1;;
h) helpPanel;;
esac
done
#Then we must set up the functions for each mode, ex:
functionhelpPanel(){
echo-e "\n${redColour}[!] Uso: ./btcAnalyzer${endColour}"
foriin$(seq 1 80);doecho-ne "${redColour}-";done;echo-ne "${endColour}"
echo-e "\n\n\t${grayColour}[-e]${endColour}${yellowColour}Modo exploración${endColour}"
echo-e "\t\t${purpleColour}unconfirmed_transactions${endColour}${yellowColour}:\t Listar transacciones no confirmadas${endColour}"
echo-e "\t\t${purpleColour}inspect${endColour}${yellowColour}:\t\t\t Inspeccionar un hash${endColour}"
echo-e "\t\t${purpleColour}address${endColour}${yellowColour}:\t\t\t Inspeccionar una dirección${endColour}"
echo-e "\n\t${grayColour}[-n]${endColour}${yellowColour}Limitar el número de resultados${endColour}${blueColour}(Ejemplo: -n 10)${endColour}"
echo-e "\n\t${grayColour}[-i]${endColour}${yellowColour}Proporcionar el hash de transacción${endColour}${blueColour}(Ejemplo: -i 000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f)${endColour}"
echo-e "\n\t${grayColour}[-a]${endColour}${yellowColour}Proporcionar la dirección de transacción${endColour}${blueColour}(Ejemplo: -a 1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa)${endColour}"
echo-e "\n\t${grayColour}[-h]${endColour}${yellowColour}Mostrar este panel de ayuda${endColour}\n"
#Then to show the help panel when using an incorrect parameter:
if[ $parameter_counter-eq0 ];then
helpPanel
else
if[ "$(echo $exploration_mode)"=="unconfirmed_transactions"];then
if[ !"$number_output"];then
number_output=100
unconfirmedTransactions $number_output
else
unconfirmedTransactions $number_output
fi
elif[ "$(echo $exploration_mode)"=="inspect"];then
inspectTransaction $inspect_transaction
elif[ "$(echo $exploration_mode)"=="address"];then
inspectAddress $inspect_address
fi
fi