#!/bin/bash fichier="/etc/services" while read ligne do if [ ! -z "$ligne" ] && [[ ! "$ligne" =~ ^#.* ]] then # Pour afficher la ligne seule # echo $ligne port=$(echo "$ligne" | cut -f3) soft=$(echo "$ligne" | cut -f1) if [ ! -z "$port" ] then #Pour afficher le port seul #echo "Port $port" #Affichage port + nom du logiciel echo "Port / nom prog. : $port $soft" fi fi done < $fichier