#!/bin/bash function myip { MYIP=`wget -qO- https://start.parrotsec.org/ip/` echo -e "\nMy ip is:\n" echo $MYIP echo -e "\n" } myip