Skip to content

Instantly share code, notes, and snippets.

@jimmyadaro
Created June 7, 2020 22:40
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 jimmyadaro/230780f36832e86a0cd69614cf071546 to your computer and use it in GitHub Desktop.
Save jimmyadaro/230780f36832e86a0cd69614cf071546 to your computer and use it in GitHub Desktop.
OhMyZSH config file
# Remove everything from Docker system
alias dockerpurge='docker system prune --all --force --volumes'
# Man I hate DS_Store files so much...
alias rds='find . -name '.DS_Store' -type f -delete && echo ".DS_Store files removed!"'
# Open the hosts file with Atom (really useful for VirtualHosts)
alias hosts='atom /private/etc/hosts'
# Go to htdocs
alias htdocs='cd /Applications/XAMPP/xamppfiles/htdocs/'
# Return timestamp
alias timestamp='date +%s'
alias ts='timestamp'
#SSH
alias <PROJECT_NAME>='ssh <USER>@<HOST>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment