#compdef chattr # ------------------------------------------------------------------------------ # Copyright (c) 2016 Github zsh-users - http://github.com/zsh-users # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the zsh-users nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ------------------------------------------------------------------------------ # Description # ----------- # # Completion script for chattr a tool to change file attributes on a Linux second extended file system. (http://e2fsprogs.sourceforge.net/). # # ------------------------------------------------------------------------------ # Authors # ------- # # * Jindřich Pilař (https://github.com/JindrichPilar) # # ------------------------------------------------------------------------------ _chattr() { _arguments -C \ "-R[Recursively change attributes of directories and their contents.]" \ "-V[Be verbose with chattr's output and print the program version.]" \ "-f[Suppress most error messages.]" \ "-v[Set the file's version/generation number.]:version:" \ "(-A)+A[Disable atime updates]" \ "(+A)-A[Enable atime updates]" \ "(-a)+a[Enable append only - file cannot be overridden]" \ "(+a)-a[Disable append only - file can be overridden]" \ "(-c)+c[Enable automatic compression]" \ "(+c)-c[Disable automatic compression]" \ "(-D)+D[Enable synchronous directory updates]" \ "(+D)-D[Disable synchronous directory updates]" \ "(-d)+d[Forbid backing file up with dump program]" \ "(+d)-d[Allow backing file up with dump program]" \ "(-i)+i[Mark as immutable]" \ "(+i)-i[Unmark as immutable]" \ "(-j)+j[Enable ext3 journaling]" \ "(+j)-j[Disable ext3 journaling]" \ "(-s)+s[Enable secure deletion - zero all blocks on delete]" \ "(+s)-s[Disable secure deletion - do not zero all blocks on delete]" \ "(-S)+S[Enable synchronous updates]" \ "(+S)-S[Disable synchronous updates]" \ "(-T)+T[Set top of hierarchy - direct subdirectories are allocated independently]" \ "(+T)-T[Unset top of hierarchy]" \ "(-t)+t[Disable tail merging]" \ "(+t)-t[Enable tail merging]" \ "(-u)+u[Mark as undeletable - enable undeletion]" \ "(+u)-u[Unmark as undeletable - disable undeletion]" \ '*:files:_files' \ } _chattr