Skip to content

Instantly share code, notes, and snippets.

@stresslimit
Created July 15, 2012 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stresslimit/3117437 to your computer and use it in GitHub Desktop.
Save stresslimit/3117437 to your computer and use it in GitHub Desktop.
useful shortcuts and settings for .bash_profile
# 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