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/_fsh
#compdef fsh

local curcontext="$curcontext" state line ret=1
local -a _comp_priv_prefix

_arguments -C \
  '(- : *)'{-h,--help}'[display help information]' \
  '(- : *)'{-V,--version}'[display version information]' \
  '-r[specify method]:method:(rsh ssh)' \
  '-l[specify login id]:login:_users' \
  '(-T --timeout)'{-T,--timeout}':idle timeout:' \
  ':remote host name:_hosts' \
  '(-):command: _command_names -e' \
  '*::args:->command' && ret=0

if [[ -n "$state" ]]; then
  shift 1 words
  (( CURRENT-- ))
  _normal && ret=0
fi

return ret