diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Makefile.in | 2 | ||||
-rw-r--r-- | Doc/Zsh/.distfiles | 3 | ||||
-rw-r--r-- | Doc/Zsh/mod_attr.yo | 34 |
3 files changed, 37 insertions, 2 deletions
diff --git a/Doc/Makefile.in b/Doc/Makefile.in index 7ca9dd25c..2c07dc101 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -55,7 +55,7 @@ zshall.1 YODLDOC = $(MAN) texi MODDOCSRC = \ -Zsh/mod_cap.yo Zsh/mod_clone.yo \ +Zsh/mod_attr.yo Zsh/mod_cap.yo Zsh/mod_clone.yo \ Zsh/mod_compctl.yo Zsh/mod_complete.yo Zsh/mod_complist.yo \ Zsh/mod_computil.yo Zsh/mod_curses.yo \ Zsh/mod_datetime.yo Zsh/mod_deltochar.yo \ diff --git a/Doc/Zsh/.distfiles b/Doc/Zsh/.distfiles index 4a2ea4fd0..95764875b 100644 --- a/Doc/Zsh/.distfiles +++ b/Doc/Zsh/.distfiles @@ -5,7 +5,8 @@ DISTFILES_SRC=' contrib.yo exec.yo expn.yo filelist.yo files.yo func.yo grammar.yo index.yo intro.yo invoke.yo jobs.yo manmodmenu.yo - manual.yo metafaq.yo mod_cap.yo mod_clone.yo + manual.yo metafaq.yo mod_attr.yo mod_cap.yo + mod_clone.yo mod_compctl.yo mod_complete.yo mod_complist.yo mod_computil.yo mod_curses.yo mod_datetime.yo mod_deltochar.yo mod_example.yo mod_files.yo mod_langinfo.yo modlist.yo mod_mapfile.yo diff --git a/Doc/Zsh/mod_attr.yo b/Doc/Zsh/mod_attr.yo new file mode 100644 index 000000000..ed444d0d7 --- /dev/null +++ b/Doc/Zsh/mod_attr.yo @@ -0,0 +1,34 @@ +COMMENT(!MOD!zsh/attr +Builtins for manipulating extended attributes (xattr). +!MOD!) +The tt(zsh/attr) module is used for manipulating extended attributes. +The builtins in this module are: + +startitem() +findex(zgetattr) +cindex(extended attributes, xattr, getting from files) +item(tt(zgetattr) var(filename) var(attribute) [ var(parameter) ])( +Get the extended attribute var(attribute) from the specified +var(filename). If the optional argument var(parameter) is given, the +attribute is set on that parameter instead of being printed to stdout. +) +findex(zsetattr) +cindex(extended attributes, xattr, setting on files) +item(tt(zsetattr) var(filename) var(attribute) var(value))( +Set the extended attribute var(attribute) on the specified +var(filename) to var(value). +) +findex(zdelattr) +cindex(extended attributes, xattr, removing, deleting) +item(tt(zdelattr) var(filename) var(attribute))( +Remove the extended attribute var(attribute) from the specified +var(filename). +) +findex(zlistattr) +cindex(extended attributes, xattr, listing) +item(tt(zlistattr) var(filename) [ var(parameter) ])( +List the extended attributes currently set on the specified +var(filename). If the optional argument var(parameter) is given, the +list of attributes is set on that parameter instead of being printed to stdout. +) +enditem() |