diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-10 13:59:05 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-10 13:59:05 -0400 |
commit | 4768d243b65151ac32381e8fac5afb49781a3b7c (patch) | |
tree | aa6cdbd59069f1a5d1f30b3e45fb96d57fc72f25 /src/grp-initprogs/systemd-tmpfiles/systemd-tmpfiles.completion.zsh | |
parent | 7a1416642f6d169234d6ce4272e59c6b7e37a218 (diff) |
./move.sh
Diffstat (limited to 'src/grp-initprogs/systemd-tmpfiles/systemd-tmpfiles.completion.zsh')
-rw-r--r-- | src/grp-initprogs/systemd-tmpfiles/systemd-tmpfiles.completion.zsh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/grp-initprogs/systemd-tmpfiles/systemd-tmpfiles.completion.zsh b/src/grp-initprogs/systemd-tmpfiles/systemd-tmpfiles.completion.zsh new file mode 100644 index 0000000000..6ff02e5d98 --- /dev/null +++ b/src/grp-initprogs/systemd-tmpfiles/systemd-tmpfiles.completion.zsh @@ -0,0 +1,13 @@ +#compdef systemd-tmpfiles + +_arguments \ + {-h,--help}'[Show help]' \ + '--version[Show package version]' \ + '--create[Create, set ownership/permissions based on the config files.]' \ + '--clean[Clean up all files and directories with an age parameter configured.]' \ + '--remove[All files and directories marked with r, R in the configuration files are removed.]' \ + '--boot[Execute actions only safe at boot]' \ + '--prefix=[Only apply rules that apply to paths with the specified prefix.]' \ + '--exclude-prefix=[Ignore rules that apply to paths with the specified prefix.]' \ + '--root=[Operate on an alternate filesystem root]:directory:_directories' \ + '*::files:_files' |