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

4
update
View file

@ -137,8 +137,9 @@ 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'
@ -162,6 +163,5 @@ for d in home sh vim; do
#else warn " = $f"
fi
done < _new/sorted.txt
done
clean