HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/zsh/functions/Completion/Unix/_iftop
#compdef iftop

_interfaces () {
  local disp expl sep
  _description interfaces expl 'network interface'
  _net_interfaces "$expl[@]"
  if zstyle -t ":completion:${curcontext}:interfaces" verbose; then
    zstyle -s ":completion:${curcontext}:interfaces" list-separator sep || sep=--
    disp=( "any $sep capture on all interfaces" )
    compadd "$expl[@]" -ld disp any
  else
    compadd "$expl[@]" any
  fi
}

_arguments \
  '(-h -n -N -p -b -B -P -i -f -F -c)'-h'[print a summary of usage]' \
  -n"[don't do hostname lookups]" \
  -N"[don't resolve port number to service names]" \
  -p'[run in promiscuous mode]' \
  -P'[turn on port display]' \
  -b"[don't display bar graphs of traffic]" \
  -B'[display bandwidth rates in bytes/sec rather than bits/sec]' \
  '-i+[interface]:network interface:_interfaces' \
  '-f+[filter]:BPF filter' \
  '-F+[net/mask]:network/mask' \
  '-c+[config file]:config file:_files'