#!/bin/bash
# convertit un texte trié avec uniq -c vers un format tableur (tabulations).
sed -e "s/^ *//g" -e "s/ /\t/g" | grep "^[0-9]" | sort -nr
