count innodes ubuntu16
#!/bin/bash read -p 'Entrez le path : ' path for i in $path; do echo -n $i " " ; find $i |wc -l; done | sort -n -k2