Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 541 Bytes

File metadata and controls

30 lines (26 loc) · 541 Bytes

bash

bash scripts

.bashrc with useful aliases.

cp .bashrc ~/.bashrc
# or
cd ~
wget https://raw.githubusercontent.com/mrminning/bash/master/.bashrc

Put this in .bashrc to only use aliases, just below the .bash_aliases

if [ -f ~/bash/bash_aliases.sh ]; then
    . ~/bash/bash_aliases.sh
fi

tmux

cd ~
wget https://raw.githubusercontent.com/mrminning/bash/master/.tmux.conf

Put this in .bashrc to use tmuxfunctions.

if [ -f ~/bash/tmuxfunctions.sh ]; then
    . ~/bash/tmuxfunctions.sh
fi