Comments on: Taille d’un dossier en bash http://sametmax.com/taille-dun-dossier-en-bash/ Du code, du cul Mon, 28 Oct 2019 11:54:55 +0000 hourly 1 https://wordpress.org/?v=4.9.7 By: david96 http://sametmax.com/taille-dun-dossier-en-bash/#comment-174785 Sun, 24 Jan 2016 21:42:03 +0000 http://sametmax.com/?p=6485#comment-174785 Bonsoir,

Merci Syl, j’ai bien conscience de remonter un vieux topic, mais c’est exactement la fonction « df » que je recherchai… :)

df .

Sys. de fichiers Taille Utilisé Dispo Uti% Monté sur

/dev/sdg1 7,3G 2,2G 5,1G 30% /media/david96/LIVE

]]>
By: foxmask http://sametmax.com/taille-dun-dossier-en-bash/#comment-10434 Fri, 28 Jun 2013 14:40:50 +0000 http://sametmax.com/?p=6485#comment-10434 @kontre : pour jouer avec l’histo :

recherche incrémentale :

ctrl-r + taper la string cherchée, et si la ligne affichée ne convient pas s’acharner sur ctrl-r jusqu’à pécho la ligne voulue ;)

ou :
!1234 pour rappeler la commande de la ligne 1234 (qui fait 15km de long)

ou :
!s
rappellera la dernière commande commençant par “s”

]]>
By: Alkero http://sametmax.com/taille-dun-dossier-en-bash/#comment-10430 Fri, 28 Jun 2013 11:13:22 +0000 http://sametmax.com/?p=6485#comment-10430 Pour l’ersatz de treesize et avoir et le tri et le Human Readable:

du -hxBM --max-depth=1 . | sort -n

]]>
By: rflolz http://sametmax.com/taille-dun-dossier-en-bash/#comment-10423 Fri, 28 Jun 2013 09:34:28 +0000 http://sametmax.com/?p=6485#comment-10423 Moyen mnémotechnique :
du pour utilisation du disque (ou disk usage en anglais)

]]>
By: Symen http://sametmax.com/taille-dun-dossier-en-bash/#comment-10420 Fri, 28 Jun 2013 08:34:21 +0000 http://sametmax.com/?p=6485#comment-10420 @tmonjalo
Merci pour ncdu, ça fonctionne nickel et c’est beaucoup plus léger que baobab + ssh + X11 forwarding. :)

]]>
By: Sam http://sametmax.com/taille-dun-dossier-en-bash/#comment-10419 Fri, 28 Jun 2013 08:27:28 +0000 http://sametmax.com/?p=6485#comment-10419 Un des paiements de ce blog, c’est toutes ces petites infos et corrections en commentaire. C’est fantastique;

]]>
By: Toniob http://sametmax.com/taille-dun-dossier-en-bash/#comment-10418 Fri, 28 Jun 2013 07:24:39 +0000 http://sametmax.com/?p=6485#comment-10418 Je conseille l’utilisation de l’option -x afin d’éviter de traverser les systèmes de fichiers montés dans l’arbo (ce qui poutre assez régulièrement le nfs par exemple).

]]>
By: Syl http://sametmax.com/taille-dun-dossier-en-bash/#comment-10417 Fri, 28 Jun 2013 07:20:44 +0000 http://sametmax.com/?p=6485#comment-10417 Et ‘df’ pour avoir l’espace libre!

]]>
By: tmonjalo http://sametmax.com/taille-dun-dossier-en-bash/#comment-10408 Thu, 27 Jun 2013 20:15:34 +0000 http://sametmax.com/?p=6485#comment-10408 En interactif, je vous conseille ncdu : http://dev.yorhel.nl/ncdu/scr

]]>
By: Symen http://sametmax.com/taille-dun-dossier-en-bash/#comment-10404 Thu, 27 Jun 2013 15:59:36 +0000 http://sametmax.com/?p=6485#comment-10404 @Fred
C’est possible avec sort -h (–human-numeric-sort), mais sauf erreur ça existe seulement avec les versions récentes de GNU coreutils.

]]>