sh/bash.bashrc

10 lines
180 B
Text
Raw Normal View History

2023-05-09 20:09:01 +00:00
#! /usr/bin/env bash
PATH="$(realpath "${BASH_SOURCE[0]}")"
ROOT="$(dirname "${PATH}")"
DIRECTORY="${ROOT}/bash.d"
for file in "${DIRECTORY}"/*.sh ; do
2023-05-09 20:01:32 +00:00
source "${file}"
done