Skip to content

Latest commit

 

History

History
80 lines (66 loc) · 2.48 KB

README.md

File metadata and controls

80 lines (66 loc) · 2.48 KB

Be bop a Bash

My bash configuration for Mac.

Install

Step 1: Clone

git clone https://github.com/stavros-liaskos/be-bop-a-bash.git && cd be-bop-a-bash

Step 2: Install Plugins

Install plugins based on user input

bash plugins-install.sh

Step 3: Update Profile

Install your bash_profile

./install.sh

Note: Run this script after git pull to install your the latest .bash_profile

Features

Sets .gitignore_global with some basic excludes.

For all private information (tokens, private PATH, etc), add a ~/be-bop-a-bash/private file.
Run ./install, it will be sourced but not overwritten

Info

To reset an alias:

unalias ll

To list all of your configured aliases:

alias

To reset a function:

unset -f foo

To see the definition (for each defined alias, keyword, function, builtin or executable file):

type -a foo

To see the type (for each defined alias, keyword, function, builtin or executable file):

type -t foo

You can always invoke cat after aliasing ccat by typing \cat.

Extra

Sources

https://natelandau.com/my-mac-osx-bash_profile/
https://github.com/mathiasbynens/dotfiles
https://git-scm.com/book/en/v1/Git-Basics-Tips-and-Tricks