Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/frafra/bash_custom


https://github.com/frafra/bash_custom

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

Here are some bash scripts that you can reuse and modify as you wish.

I added these lines to `.bashrc`:

```bash
if [ -d "$HOME/bash_custom" ]
then
for file in "$HOME/bash_custom"/*.sh
do
. "$file"
done
fi
```