mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Dot-env is a cross-platform, cascading Zsh environment system for those who work on different hardware and OS environments. See: https://github.com/midwire/.env
9 lines
199 B
Bash
9 lines
199 B
Bash
# Alias chmod commands
|
|
alias 000='chmod 000'
|
|
alias 600='chmod 600'
|
|
alias 644='chmod 644'
|
|
alias 755='chmod 755'
|
|
alias mgid='chmod g+s'
|
|
alias mx='chmod a+x'
|
|
alias rgid='chmod g-s'
|
|
alias rx='chmod a-x'
|