dotfiles/stowall.sh

11 lines
166 B
Bash
Raw Normal View History

2021-03-12 09:37:21 -05:00
#!/usr/bin/env bash
2022-02-09 10:12:28 -05:00
2021-03-12 09:37:21 -05:00
shopt -s extglob
for x in {any,"${OSTYPE%%+([[:digit:].])}"}/*
2020-11-10 12:00:25 -05:00
do
if [[ -d $x ]]
then
2021-03-12 09:46:06 -05:00
stow -t $HOME -d $(dirname $x) $(basename $x)
2020-11-10 12:00:25 -05:00
fi
done