diff --git a/TipsShell.md b/TipsShell.md index fb9c6b31..4be9ee2e 100644 --- a/TipsShell.md +++ b/TipsShell.md @@ -140,6 +140,11 @@ $ iwatch $ stat -c %U /tmp/* | sort | uniq -c | sort -n ~~~ +Si «too arguments pour stat» (version bien plus lente) : +~~~ +$ find /tmp -exec stat -c %U '{}' \; | sort | uniq -c | sort -n +~~~ + ### Comparer deux répertoires à travers SSH Générique :