Difference between revisions of "Trillex linux 1"

From Teknologisk videncenter
Jump to: navigation, search
m (Category edit)
Line 1: Line 1:
 +
 +
== Commands ==
 +
=== find command ===
 
The command '''find''' find files on the filesystem.  
 
The command '''find''' find files on the filesystem.  
 
[[Category:Linux]][[Category:H2]]
 
[[Category:Linux]][[Category:H2]]
Line 8: Line 11:
 
                       # ''wc'' command as input. ''wc'' is ''wordcount''. The toggle
 
                       # ''wc'' command as input. ''wc'' is ''wordcount''. The toggle
 
                       # "-l" means count lines.
 
                       # "-l" means count lines.
 +
 +
=== '''ls''' Command ===
 +
List files just like '''dir''' does it in a Windows command prompt
 +
 +
=== '''cat''' Command ===
 +
The '''cat''' command shows the content of a file
 +
 +
    cat /etc/passwd
 +
 +
== Important Files ==
 +
 +
=== The /etc Directory ===
 +
 +
=== '''passwd''' File ===
 +
The passwd file contains all user names as well as their home directory and the shell they use.

Revision as of 12:52, 9 February 2009

Commands

find command

The command find find files on the filesystem.

   Example:
   find /            # List all files
   find /etc         # List all files under the /etc directory
   find / | wc -l    # List all files, but don't show them on the screen
                     # The "|" is a pipe which directs output to the
                     # wc command as input. wc is wordcount. The toggle
                     # "-l" means count lines.

ls Command

List files just like dir does it in a Windows command prompt

cat Command

The cat command shows the content of a file

   cat /etc/passwd

Important Files

The /etc Directory

passwd File

The passwd file contains all user names as well as their home directory and the shell they use.