My build of nnn with minor changes
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

14 satır
232 B

  1. #!/usr/bin/env sh
  2. # Description: Shows the IP address and whois information. Useful over VPNs.
  3. #
  4. # Shell: POSIX compliant
  5. # Author: Arun Prakash Jana
  6. IP=`curl -s ifconfig.me`
  7. whois "$IP"
  8. echo your IP address is "$IP"
  9. read dummy