mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-02-15 13:50:58 +01:00
change external ip track service
This commit is contained in:
@@ -14,5 +14,5 @@ plugins=(... ips)
|
|||||||
|
|
||||||
| Alias | Command | Description |
|
| Alias | Command | Description |
|
||||||
|---------------|-------------------------------------------------------------------------------------------------------------------|-------------------------------------|
|
|---------------|-------------------------------------------------------------------------------------------------------------------|-------------------------------------|
|
||||||
| ipe | `curl ipinfo.io/ip` | Display your current external ip |
|
| ipe | `curl -s ipv4.icanhazip.com` | Display your current external ip v4 |
|
||||||
| ipi | `ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*'| grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1'` | Display your current internal ip |
|
| ipi | `ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*'| grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1'` | Display your current internal ip v4 |
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
# easy get ip - internal & external
|
# easy get ip - internal & external
|
||||||
alias ipe="curl -w '\n' ipinfo.io/ip"
|
alias ipe="curl -s ipv4.icanhazip.com"
|
||||||
alias ipi="ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*'| grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1'"
|
alias ipi="ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*'| grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1'"
|
||||||
|
|||||||
Reference in New Issue
Block a user