| Server IP : 74.208.236.79 / Your IP : 216.73.216.40 Web Server : Apache System : Linux infongp-us50 4.4.400-icpu-108 #2 SMP Wed Feb 11 10:12:42 UTC 2026 x86_64 User : u93192080 ( 6162215) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /kunden/usr/share/zsh/functions/Misc/ |
Upload File : |
#!/bin/zsh -f
#
# Install this function by placing it in your FPATH and then
# adding to your .zshrc the line if you use run-help function:
# autoload -Uz run-help-ip
if [ $# -eq 0 ]; then
man ip
return
fi
if ! man -w ip-address >/dev/null 2>&1; then
man ip
return
fi
while [[ $# != 0 && $1 == -* ]]; do
shift
done
case $1 in
(addrl*) man ip-addrlabel ;;
(a*) man ip-address ;;
(l2*) man ip-l2tp ;;
(li*) man ip-link ;;
(ma*) man ip-maddress ;;
(mo*) man ip-monitor ;;
(mr*) man ip-mroute ;;
(nei*) man ip-neighbour ;;
(netc*) man ip-netconf ;;
(netn*) man ip-netns ;;
(nt*) man ip-ntable ;;
(ro*) man ip-route ;;
(ru*) man ip-rule ;;
(tcp*) man ip-tcp_metrics ;;
(to*) man ip-token ;;
(tu*) man ip-tunnel ;;
(xf*) man ip-xfrm ;;
(*) man ip ;;
esac
return $?