soure

Introduction

  1. Types of Unix
  1. Three parts of Unix operating system

Everything in UNIX is either a file or a process

Listing files and directories

Handling files

Redirecting

example: Using pipes, display all lines of list1 and list2 containing the letter ‘p’, and sort the result.

cat list1 list2 | grep p | sort

Wildcard

Getting help

Access rights

example: -rwxrw-r– 1 ee51ab beng95 2450 Sept29 11:52 file1

Changing access right

Jobs

NOTE: It is no possible to kill off other users’ processes/jobs!!