1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-29 17:31:02 +01:00
zsh/Completion/Builtins/_stat
1999-10-26 15:36:10 +00:00

13 lines
310 B
Text

#compdef stat
local expl
if [[ "$words[CURRENT-1]" = -[AH] ]]; then
_arrays
else
_description expl 'inode element'
[[ "$PREFIX[1]" = + ]] &&
compadd "$expl[@]" - +device +inode +mode +nlink +uid +gid +rdev +size \
+atime +mtime +ctime +blksize +block +link
_files
fi