Ecosyste.ms: Awesome
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: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/frafra/bash_custom
- Owner: frafra
- Created: 2023-10-18T12:45:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-08T15:58:50.000Z (about 2 months ago)
- Last Synced: 2024-11-08T16:46:52.305Z (about 2 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```