Main index

Introducing UNIX and Linux


Files

Overview
The UNIX directory hierarchy
Filesystems
Manipulating files
      Creating directories
      Creating files
      links
      'Dot' files
Protecting files
      Groups
      File access control
      Changing privileges
File contents
      Text files
      Comparing files
      Filtering files
      Non-text files
Printing files
File archives and file compression
Other relevant commands
Summary
Exercises

Answer to chapter 5 question 3

Use ls with option -i (to list inodes as well as filenames), and pipe the output to sort with option -n (to indicate numerical rather than lexical order):

ls -i | sort -n


Copyright © 2002 Mike Joy, Stephen Jarvis and Michael Luck