9 lines
129 B
Bash

#!/bin/bash
file='./Users.csv'
while read ligne
do
metier=$(echo $ligne | cut -d ":" -f5 )
echo $metier
done < $file