dotfiles/sync.sh
2017-02-20 17:25:56 +01:00

5 lines
88 B
Bash
Executable file

#!/bin/bash
for app in $(ls -d */ | sed -e 's#/##'); do
stow -v -t $HOME $app
done