aboutsummaryrefslogtreecommitdiff
path: root/stow/install
diff options
context:
space:
mode:
authorCody Hiar <cody@hiar.ca>2021-11-10 14:09:24 -0700
committerCody Hiar <cody@hiar.ca>2021-11-10 14:09:24 -0700
commit1d208e292b66b9bc4e39c3b29716559f8c1f9a3f (patch)
tree8a1de83d75879d4ea36905bba1451cbea620785e /stow/install
Initial Commit
Diffstat (limited to 'stow/install')
-rwxr-xr-xstow/install5
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
+