Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 493 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 493 Bytes

My aliases for bash/zsh shell

This repo contains the list of useful aliases for:

  • general terminal activities
  • git
  • python development
  • django development
  • other

You can add them by running load_aliases.sh

Alternatively follow these steps:

  • copy .myaliases to your home directory
  • add ref to the file in your shell dotfile (eg. .bashrc or .zshrc):
    if test -f "$HOME/.myaliases"; then
      source $HOME/.myaliases
    fi
    
  • restart your shell to load changes