Reputation: 41
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
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