1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 17:01:19 +02:00
zsh/Completion/Builtins/_stat
1999-05-02 15:20:46 +00:00

11 lines
243 B
Plaintext

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