Bash Scripting - File Operations in Scripts
This script is intended to print the third column of a CSV file:
But it does not work. What is the problem?
while IFS=',' read -r col1 col2 col3; do echo $col3; done file.csv
But it does not work. What is the problem?
