HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: u115237990 (7145895)
PHP: 8.3.32
Disabled: NONE
Upload Files
File: //kunden/usr/share/zsh/functions/Completion/Unix/_tty
#compdef tty gtty

local -a args

if _pick_variant gnu='Free Soft' unix --version; then
  args=(
    '(-)--help[display help information]'
    '(-)--version[display version information]'
    '(-s --quiet --silent)'{-s,--quiet,--silent}'[suppress normal output]'
  )
else
  args=( '-s[suppress normal output]' )
  [[ $OSTYPE == solaris* ]] && args+=(
    "-l[display terminal's synchronous line number]"
  )
fi

_arguments -s -S : $args