1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 21:44:11 +01:00
zsh/Completion/Builtins/_stat

11 lines
243 B
Plaintext
Raw Normal View History

1999-05-02 17:20:46 +02:00
#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