Contents: [slideshow]

The Command Line

Filing System, File and Directory Handling

Processes

BASH: More and Scripts

Installation

More

Practical Session




About this document

Basic Linux Stuff

Quick and Dirty File Content

cat, more and less
Concatenate file ("print" it); more pages down; less pages up and down.
head and tail
View the first/last lines of a file; follow additions to a file:
  head -12 file.html        tail -24 my.log
                            tail -f /var/log/messages


...previousup (conts)next...