Next: Using a File Manager
Up: More on Files
Previous: Finding Files
  Contents
  Index
Debian comes with a utility that can guess at the contents of a file for you.
Although it is not 100% accurate, you can use the following command to explore
your system:
-
- $ file /bin/cp
You should see something like this:
-
-
Skipping the technical parts, this is an executable file for Intel machines.
-
- $ file /etc/init.d/boot
The preceding command gives this response:
-
- /etc/init.d/boot: Bourne shell script text
meaning that this is a text file containing a Bourne shell script.
John Goerzen / Ossama Othman