Read from file to vars

PHOTO EMBED

Thu Oct 20 2022 17:27:47 GMT+0000 (Coordinated Universal Time)

Saved by @luisjdominguezp #bash

# edades
# jorge,12
# ada, 3

while IFS="," read -r nombre edad; do 
  echo $nombre $edad;
done < edades
content_copyCOPY