www/content/blog/commands/find-hardlinks.md

13 lines
234 B
Markdown
Raw Normal View History

2020-04-28 17:29:52 +02:00
---
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
2020-04-28 17:29:52 +02:00
---
{{< highlight sh >}}
find . -samefile /path/to/file
{{< /highlight >}}