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

https://github.com/frafra/bash_custom


https://github.com/frafra/bash_custom

Last synced: 27 days 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
```