Як можна правильно перебирати рядки в bash або в змінну, або з виводу команди? Просто встановлення змінної IFS на новий рядок працює для виведення команди, але не під час обробки змінної, яка містить нові рядки.
Наприклад
#!/bin/bash
list="One\ntwo\nthree\nfour"
#Print the list with echo
echo -e "echo: \n$list"
#Set the field separator to new line
IFS=$'\n'
#Try to iterate over each line
echo "For loop:"
for item in $list
do
echo "Item: $item"
done
#Output the variable to a file
echo -e $list > list.txt
#Try to iterate over each line from the cat command
echo "For loop over command output:"
for item in `cat list.txt`
do
echo "Item: $item"
done
Це дає вихід:
echo:
One
two
three
four
For loop:
Item: One\ntwo\nthree\nfour
For loop over command output:
Item: One
Item: two
Item: three
Item: four
Як бачите, відлуння змінної або повторення над cat
командою правильно друкує кожен рядок один за одним. Однак перший для циклу друкує всі елементи в одному рядку. Будь-які ідеї?