cenk
cenk

Reputation: 41

How to call a file with inode?

How can I open a file with its inode? I mean, lets fileName has 123456 inode. I want to open fileName like $cd fileName. How can I do this using its inode?

Upvotes: 1

Views: 271

Answers (1)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798526

There is no universal way to open an inode. You should always open it via a link, i.e. the filename.

Upvotes: 2

Related Questions