Server IP : 51.89.169.208 / Your IP : 216.73.216.211 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/zsh/5.5.1/functions/ |
Upload File : |
#compdef stat zstat local expl ret=1 if [[ $service == zstat ]] || (( ${+builtins[stat]} )) || { (( ! ${+builtins} )) && [[ $(type -w stat) == '*: builtin' ]] } then _arguments -s -S : \ '(-H)-A[assign the results to array, don'\''t print]:array variable:_parameters -g "*array*"' \ - set1 \ +device +inode +mode +nlink +uid +gid +rdev \ +size +atime +mtime +ctime +blksize +block +link \ '(-A)-H[assign the results to associative array, don'\''t print]:associative array variable:_parameters -g "*association*"' \ '(:)-f[stat a file descriptor]:file descriptor:_file_descriptors' \ '(-s)-F:strftime(3) format string:_date_formats zsh' \ '(-s)-g[show times in GMT/UTC]' \ '-L[don'\''t dereference symbolic links; use lstat(2)]' \ '(-N)-n[always show names of files]' \ '(-n)-N[never show names of files]' \ '-o[print file modes in octal rather than decimal]' \ '-r[print raw data]' \ '-s[print mode,uid,gid and times as strings]' \ '(-T)-t[always show type names]' \ '(-t)-T[never show type names]' \ '*:files to stat:_files' \ - set2 \ '-l[list stat types]' else # TODO: system-specific completion # TODO: choose this codepath if 'command stat ...' or '=stat ...' is used _files fi