dotfiles/stowall.sh

10 lines
165 B
Bash
Raw Normal View History

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