summaryrefslogtreecommitdiff
path: root/init.sh
blob: e6856de03b100e58bc6b294f915237a42ad64f70 (plain)
1
2
3
4
5
#!/bin/sh

find . -type d -mindepth 1 -maxdepth 1 -not -path '*/.*' \
	| sed "s/^\.\///" \
	| while read dir; do stow --no-folding "$dir"; done