dotfiles/stowall.sh

9 lines
70 B
Bash
Raw Normal View History

2020-11-10 18:00:25 +01:00
#/bin/bash
for x in $(ls)
do
if [[ -d $x ]]
then
stow $x
fi
done