9 lines
70 B
Bash
9 lines
70 B
Bash
|
#/bin/bash
|
||
|
for x in $(ls)
|
||
|
do
|
||
|
if [[ -d $x ]]
|
||
|
then
|
||
|
stow $x
|
||
|
fi
|
||
|
done
|