An open API service indexing awesome lists of open source software.

https://github.com/tobybatch/bashdotdee

Adds function to my bash shell.
https://github.com/tobybatch/bashdotdee

bash

Last synced: 5 months ago
JSON representation

Adds function to my bash shell.

Awesome Lists containing this project

README

          

# Bash dot Dee

## TLDR;

curl -o - https://raw.githubusercontent.com/tobybatch/bashdotdee/refs/heads/main/install.sh | bash

## Manual install

Adds function to my bash shell.

git clone https://github.com/tobybatch/bashdotdee.git $HOME/.bash.d

cat <>.bashrc
PATH=\$PATH:\$HOME/.bash.d/bin
for x in ~/.bash.d/enabled/*.bash
do
. "\$x"
done
EOF

Now use ```bash.d.sh -h``` to manage extensions.

New shells should now have added juice.

## Usage

After installing open an new shell.

### Show usage

bash.d.sh -h

### List modules

bash.d.sh -l

### Enable a module

bash.d.sh -e

### Disable a module

bash.d.sh -d

### Examples

Enable batcat

bash.d.sh -e 11_batcat.bash

Disable python

bash.d.sh -d 14_python.bash