dotfiles/dot.sh

13 lines
169 B
Bash
Raw Normal View History

2023-09-01 01:40:41 +02:00
#!/bin/sh
for lib in $(find ./lib -type f -name *.lib.sh); do
. $lib
done
__log_lvl=0
for crate in $(crates); do
debug "loading $crate..."
done
echo "OK"