Stack OverflowMediumdev.toGitHub

Bash and Tmux

✍️ Published on ( min read)

Useful Bash Tips

  • Use alias for shortcut commands

    $ alias gs="git status"
    
  • Update .bashrc and update it as the source.

    $ vi ~/.bashrc $ source ~/.bashrc

Tmux

Tmux, in simple terms is a Terminal Multiplexer. It has the following benefits:

  • Can save and navigate between different sessions, example: opensource-session, work-session.
  • Allows window split functionality

Tmux Resources

Tmux tips

  • Set mouse mode on:

    $ set -g mouse on