j'ai un fichier CSV je veux obtenir le nom de la colonne pour chaque colonne
échantillon :
comment puis-je faire cela avec awk ou sed ou grep ??
head -n 1 file.csv
ou
sed 1q file.csv
grep -m 1 '' file.csv
awk 'NR==1 {print; exit}' file.csv