I am new to linux and I want to know if there is any command that displays all the file names hardlinked to a particular file
Use 'find' with the -inum argument.
$ ls -li .zshrc 425369 -rw-rw-r-- 1 gordon gordon 4591 Oct 21 2002 .zshrc $ find . -inum 425369 -maxdepth 1 ./.zshrc
-- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list