Bash Scripting - File Operations in Scripts
You wrote this command to extract the first column from a CSV file:
But it returns the whole line instead of just the first column. What is the likely problem?
cut -f1 -d',' file.csvBut it returns the whole line instead of just the first column. What is the likely problem?
