dotfiles-etc/stowall.sh

9 lines
76 B
Bash
Raw Normal View History

2020-11-10 12:30:41 -05:00
#!/bin/bash
for x in $(ls)
do
if [[ -d $x ]]
then
sudo stow $x
fi
done