Skip to content

Instantly share code, notes, and snippets.

@preeteshjain
Last active August 20, 2018 06:31
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 preeteshjain/7ce4ce200ab30bc7ec260533328057e5 to your computer and use it in GitHub Desktop.
Save preeteshjain/7ce4ce200ab30bc7ec260533328057e5 to your computer and use it in GitHub Desktop.
Handy Bash Shortcuts (For Laravel Homstead)
alias ..="cd .."
# Access Homestead from anywhere
function homestead() {
( cd ~/Homestead && vagrant $* )
}
# Sublime Text shortcut
alias 'subl="/c/Program Files/Sublime Text 3/subl.exe"'
# Homestead on
alias hon="homestead up"
# Homestead off
alias hoff="homestead halt"
# Homestead ssh
alias vm="homestead ssh"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment