-
Notifications
You must be signed in to change notification settings - Fork 226
Closed
Labels
Description
I have a very simple csv file
KEY;DE;EN;ES;FI;FR;IT;NL;PL;RO;TR;BG;CZ;RU;GR;HU;SE;CR;SLO;SK
masterdata_colourcode_1;Weiß;White;Blanco;Valkoinen;Blanc;Bianco;Wit;Biały;Alb;Beyaz;;;;;;;;;
masterdata_colourcode_2;Schwarz;Black;Negro;Musta;Noir;Nero;Zwart;Czarny;Negru;Siyah;;;;;;;;;
and try to extract the first column
mlr --csv --fs ; cut -f KEY Colours-import.csv
The result is a list of empty lines. If I add a second column (-f KEY,EN) its cuts out only the second column but still not the first one. It appears like the first column cannot be addressed. Im using 2.3.2.
Is this a bug or am I just to stupid to use the program?