aboutsummaryrefslogtreecommitdiff
path: root/content/blog/commands/find-inodes-used.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/blog/commands/find-inodes-used.md')
-rw-r--r--content/blog/commands/find-inodes-used.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/blog/commands/find-inodes-used.md b/content/blog/commands/find-inodes-used.md
index 4936c70..4efad9d 100644
--- a/content/blog/commands/find-inodes-used.md
+++ b/content/blog/commands/find-inodes-used.md
@@ -10,6 +10,6 @@ tags:
## The command
-{{< highlight sh >}}
+```sh
find . -xdev -printf '%h\n' | sort | uniq -c | sort -k 1 -n
-{{< /highlight >}}
+```