Files
dotfiles/.bash/shell/index.sh
T
2026-04-24 10:33:45 +02:00

10 lines
240 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