1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-10-18 02:11:25 -07:00

move inner loop out of outer loop

This commit is contained in:
Connor Olding 2024-07-04 21:53:26 -07:00
parent 2765054c9f
commit 8f5934e864

12
update
View file

@ -137,13 +137,14 @@ for d in home sh vim; do
discover "$d" > _new/hashes.txt ||
die 'failed to find new files'
different < _new/hashes.txt > _new/updates.txt ||
different < _new/hashes.txt >> _new/updates.txt ||
die 'failed to compare files'
done
LC_ALL=C sort < _new/updates.txt > _new/sorted.txt ||
die 'failed to sort file paths'
LC_ALL=C sort < _new/updates.txt > _new/sorted.txt ||
die 'failed to sort file paths'
while read -r f; do
while read -r f; do
desire "$f" || continue
if [ -f "_new/$f" ] && ! [ -f "$f" ]; then
@ -161,7 +162,6 @@ for d in home sh vim; do
warn " / $f"
#else warn " = $f"
fi
done < _new/sorted.txt
done
done < _new/sorted.txt
clean