2020-04-28 17:29:52 +02:00
|
|
|
---
|
|
|
|
title: "Find hardlinks to a same file"
|
|
|
|
date: 2018-03-02
|
2021-03-11 19:47:26 +01:00
|
|
|
description: How to list hardlinks that link to the same file
|
|
|
|
tags:
|
2021-09-13 00:48:07 +02:00
|
|
|
- linux
|
2021-03-12 18:12:41 +01:00
|
|
|
- toolbox
|
|
|
|
- unix
|
2020-04-28 17:29:52 +02:00
|
|
|
---
|
|
|
|
|
2021-09-13 00:48:07 +02:00
|
|
|
## The command
|
|
|
|
|
2023-04-23 22:33:49 +02:00
|
|
|
```sh
|
2020-04-28 17:29:52 +02:00
|
|
|
find . -samefile /path/to/file
|
2023-04-23 22:33:49 +02:00
|
|
|
```
|