diff options
Diffstat (limited to 'stow/install')
-rwxr-xr-x | stow/install | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/stow/install b/stow/install new file mode 100755 index 0000000..c16ab4d --- /dev/null +++ b/stow/install @@ -0,0 +1,5 @@ +APPS=$(find . -mindepth 1 -maxdepth 1 -type d | xargs -n1 basename) +for APP in ${APPS[@]}; do + stow "$APP" -t "$HOME" +done + |