3 Haziran 2020 Çarşamba

bash kodlama - $IFS Değişkeni

Giriş
$IFS input field separator anlamına gelir. Açıklaması şöyle
$IFS is only used for word splitting after unquoted expansions.
...
The IFS variable is also used for splitting the input to the read utility.
Örnek - read komutu
Şö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