Skip to content
forked from fnichol/bashrc

cross platform bash configuration for system deployments

Notifications You must be signed in to change notification settings

aniketzamwar/bashrc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

System-Wide Deployment

sudo bash < <( curl -L http://bit.ly/bashrc-install-system-wide )

Local (User) Deployment

bash < <( curl -L http://bit.ly/bashrc-install-local-user )

Delay Loading Your Local Deployment

Simply wrap the code in your ${HOME}/.bash_profile with a function, like so:

bl() {
  if [[ -s "${HOME}/.bash/bashrc" ]] ; then
    bashrc_local_install=1
    bashrc_prefix="${HOME}/.bash"
    export bashrc_local_install bashrc_prefix
    source "${bashrc_prefix}/bashrc"
  fi
}

About

cross platform bash configuration for system deployments

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published