Display the 10 biggest directories in the current working directory

du -a | sort -n -r | head -n 10


Display the 10 biggest directories in the current working directory (Human readable)

du -hs * | sort -rh | head -n 10


Trouver un fichier a partir du dossier actuel

find . | grep nom_du_fichier
find . -iname nom_du_fichier

Afficher l'espace utilisé par les fichiers ou dossiers:

du -h

(disk usage)

du -h -d 1

(Permet de se limiter a un sous dossier)

Chercher dans less

/

Cherche vers le bas

?

Cherche vers le haut

n

recherche suivante

N

recherche precedente

Comments est propulsé par CComment