Add bookmark finder scripts, fix a few incorrect uses of IFS and read

This commit is contained in:
2026-01-20 12:31:44 -06:00
parent 6ca8fb0c33
commit 6c154836f2
7 changed files with 87 additions and 6 deletions

View File

@@ -33,10 +33,10 @@ echo "---- installing programs ---------------"
echo "$system_types_list" |
sed -E "s/,/\n/g" |
while IFS="\n" read -r system_type; do
while IFS= read -r system_type; do
echo "-------- install for system type: $system_type"
cat "installs_and_builds/programs_$system_type.txt" |
while IFS="\n" read -r program_name; do
while IFS= read -r program_name; do
build_install "$program_name"
done
done