Giriş
$IFS input field separator anlamına gelir. Açıklaması şöyle
Şöyle yaparız.
$IFS input field separator anlamına gelir. Açıklaması şöyle
$IFS is only used for word splitting after unquoted expansions.Örnek - read komutu
...
The IFS variable is also used for splitting the input to the read utility.
Şöyle yaparız.
while IFS=, read -a words; do
printf '%s\n' "${words[@]}" | sort -u
done < file.csv | sort | uniq -c | sort -rn
2 red
2 green
2 blue
1 yellow
1 brown
Hiç yorum yok:
Yorum Gönder