Update bash scripts.

This commit is contained in:
Anna Rose Wiggins 2025-07-30 12:22:46 -04:00
parent d97fea0e94
commit 8e69cd62c3
9 changed files with 24 additions and 71 deletions

View file

@ -7,3 +7,9 @@ for partial in $(ls ~/.bash.d/*.sh); do
source $partial
done
```
You may also want to ensure you have this near the top of your bashrc, to avoid executing all of these scripts for every non-interactive bash script:
```
[[ $- != *i* ]] && return
```