යමෙකු විචල්යයකින් හෝ විධානයක ප්රතිදානයෙන් බාෂ් රේඛා හරහා නිසි ලෙස ක්රියා කරන්නේ කෙසේද? 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
විධානය හරහා නැවත යෙදීම එක් එක් පේළි එකින් එක නිවැරදිව මුද්රණය කරයි. කෙසේ වෙතත්, පළමුවන ලූපය සියලු අයිතම තනි පේළියක මුද්රණය කරයි. අදහස් තිබේද?