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

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