aboutsummaryrefslogtreecommitdiff
path: root/content/blog/commands/find-hardlinks.md
blob: b4a4011f6a401c8947690a7d48761c013d252d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
title: "Find hardlinks to a same file"
date: 2018-03-02
description: How to list hardlinks that link to the same file
tags:
  - find
  - simple utilities
---

{{< highlight sh >}}
find . -samefile /path/to/file
{{< /highlight >}}