summaryrefslogtreecommitdiff
path: root/bin/hstow
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2023-01-17 10:50:36 -0700
committerSean Whitton <spwhitton@spwhitton.name>2023-01-17 10:51:00 -0700
commit5a4d307df01c0be830e92dac85d563889907ba2e (patch)
tree96148aa4d0cff61893af1a76d6e16a69dbbb2fc2 /bin/hstow
parent0591f1caca9187c32714b8b341f12fd49e901f01 (diff)
downloaddotfiles-5a4d307df01c0be830e92dac85d563889907ba2e.tar.gz
reflow
Diffstat (limited to 'bin/hstow')
-rwxr-xr-xbin/hstow7
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/hstow b/bin/hstow
index d263fac3..ff5ae181 100755
--- a/bin/hstow
+++ b/bin/hstow
@@ -139,9 +139,10 @@ unstow () {
dir_pat=".$(echo $DIR | cut -c$(echo $HOME | wc -m | tr -d ' ')-)/"
dirs_pat="$(echo "^($dir_pat|$ignores)" | sed -e 's#\.#\\.#g')"
- for file in $(find . ! \( -user "$(id -un)" -o -group "$(id -gn)" \) \
- -prune -o -type l ! -name . ! -name "$cchars" -print \
- | grep -Ev "$dirs_pat"); do
+ for file in \
+ $(find . ! \( -user "$(id -un)" -o -group "$(id -gn)" \) \
+ -prune -o -type l ! -name . ! -name "$cchars" -print \
+ | grep -Ev "$dirs_pat"); do
if readlink "$file" | grep -Eq '^(\.\./)*\.STOW/'"$NAME/"; then
rm "$file"
while true; do