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