Files
dotfiles/.bash/shell/index.sh
2026-04-21 11:19:45 +02:00

10 lines
243 B
Bash

#!/usr/bin/env bash
# Shell configuration index
# Source all shell-related configuration files
declare dir="$BASH_DOTFILES/shell"
for file in "$dir"/*.sh; do
[[ -f "$file" && "$file" != "$dir/index.sh" ]] && source "$file"
done
unset dir