Question d’entretien chez Google

Linux: view a column in the csv in the command line

Réponses aux questions d'entretien

Utilisateur anonyme

3 oct. 2019

awk can be used

Utilisateur anonyme

9 juin 2021

awk -F, '{print $1}' or cut -d, -f1 (replace '1' w/ desired column number(s))

Utilisateur anonyme

6 avr. 2022

cat file | cut -d, -f1