Created
June 7, 2020 22:40
-
-
Save jimmyadaro/230780f36832e86a0cd69614cf071546 to your computer and use it in GitHub Desktop.
OhMyZSH config file
This file contains hidden or 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
# 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