blob: d9965a48dfb81c3a626e9d2194c051f74ef29286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
title: "Find where inodes are used"
linkTitle: "Find where inodes are used"
date: 2018-04-25
description: >
Find where inodes are used
---
{{< highlight sh >}}
find . -xdev -printf '%h\n' | sort | uniq -c | sort -k 1 -n
{{< /highlight >}}
|