Ubuntu – How to list files and their inode numbers in current directory

command linefilesinode

How can I obtain list of items and their inode numbers in the current working directory ?

Best Answer

stat ./*

or

man stat; stat --format=*f* ./*