Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spl/bash-config
My bash configuration files
https://github.com/spl/bash-config
bash
Last synced: 1 day ago
JSON representation
My bash configuration files
- Host: GitHub
- URL: https://github.com/spl/bash-config
- Owner: spl
- Created: 2013-01-22T10:49:41.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2021-10-07T12:55:52.000Z (about 3 years ago)
- Last Synced: 2024-05-09T14:55:15.926Z (8 months ago)
- Topics: bash
- Language: Shell
- Size: 122 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction
This repository contains all the configuration files that I (Sean Leather) use
with Bash across various platforms.# Usage
Run the [`install.sh`](./install.sh) script.
## Path
Update your `$PATH` if it does not already have this:
```
$ export PATH=$HOME/bin:$PATH
```## Local Bash Configuration
Put your local (machine-specific) Bash configuration in `$HOME/.bashrc.local`.
## Bash Completion
If you're using Bash completion, add one of the following lines with the global
completion file (e.g. `/usr/local/etc/bash_completion`) to your
`$HOME/.bashrc.local`:1. source the global completion file:
```sh
source_script /usr/local/etc/bash_completion
```2. make a symbolic link to `$HOME/.bash_completion.local`:
```sh
make_symlink /usr/local/etc/bash_completion "$HOME/.bashrc.local"
```