To display complete information about files including inode numbers, you can use the following command:
```
ls -li
```
The `-l` option is used to display the long format of the output, which includes file permissions, ownership, size, and modification time. The `-i` option is used to display the inode number of each file.
This command will display the complete information about all the files in the current directory along with their inode numbers.
use ls command to display complete information about the above files. Include the inode numbers in the output of the ls command as well.
1 answer