Browse Source

added some utils

ekardnam 5 years ago
parent
commit
cc58473ad1
1 changed files with 10 additions and 0 deletions
  1. 10 0
      util/myip.sh

+ 10 - 0
util/myip.sh

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