Created
July 15, 2012 15:29
-
-
Save stresslimit/3117437 to your computer and use it in GitHub Desktop.
useful shortcuts and settings for .bash_profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# directory listing shortcut | |
alias ll='ls -la' | |
# hardening wordpress file permissions shortcuts | |
alias setpermd='find . -type d -exec chmod 755 {} \;' | |
alias setpermf='find . -type f -exec chmod 644 {} \;' | |
# set vi as svn propeditor | |
export SVN_EDITOR=vi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment