]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/perms/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / perms / README.md
1 # Perms plugin
2
3 Plugin to handle some unix filesystem permissions quickly.
4
5 To use it, add `perms` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(... perms)
9 ```
10
11 ## Usage
12
13 * `set755` recursively sets all given directories (default to .) to octal 755.
14 * `set644` recursively sets all given files (default to .) to octal 644.
15 * `fixperms` is a wrapper around `set755` and `set644` applied to a specified directory or the current directory otherwise. It also prompts prior to execution unlike the other two aliases.