summaryrefslogtreecommitdiff
path: root/bin/.local/bin/dotstow
diff options
context:
space:
mode:
Diffstat (limited to 'bin/.local/bin/dotstow')
-rwxr-xr-xbin/.local/bin/dotstow21
1 files changed, 0 insertions, 21 deletions
diff --git a/bin/.local/bin/dotstow b/bin/.local/bin/dotstow
deleted file mode 100755
index bcadc5e..0000000
--- a/bin/.local/bin/dotstow
+++ /dev/null
@@ -1,21 +0,0 @@
1#!/bin/bash
2
3# This script will Stow all the dotfiles located in the ~/dotfiles folder.
4# The -R flag is used to force a 'restow' which will remove any existing symlinks before attempting to Stow.
5
6echo "Stowing Dotfiles...";
7
8cd ~/dotfiles
9for file in ~/dotfiles/*; do
10 # Only run Stow on the directories in the dotfiles folder and not the individual files.
11 # Using 'basename' strips the filepath from the directory name.
12 if [ -d ${file} ]; then
13 stow -R $(basename $file)
14 echo "$(basename $file) stowed.";
15 fi
16done
17
18# Return back to the your PWD from before you ran the script
19cd ~-
20
21echo 'All stowed';