UNIX Seminar
UNIX Seminar
PREPARED BY:
NAME : ROSHAN KUMAR MAHATO
USN :1KN21CS085
SECTION : B
BRANCH : C.S.E SUBMITTED TO:
PROFESSOR DR.LEVINA
DEPARTMENT OF
CSE
THE FILE:
Files are the building blocks of any operating system. When you
execute a command in UNIX, the UNIX kernel fetches the
corresponding executable file from a file system, loads its instruction
text to memory, and creates a process to execute the command on
your behalf.
User can move around the UNIX file system using cd (change
directory) command.
When used with the argument, it changes the current directory to the
directory specified as argument, progs:
$ pwd
/home/kumar
$cd progs
$ pwd
/home/kumar/progs
3.mkdir:Making Directory
Test file:
A Text file contains only printable characters, and you can often
view the contents and make sense out of them. All C and Java
program sources, shell and perl scripts are
text files.
Binary file:
A binary file, on the other hand, contains both printable and
unprintable characters that cover the entire ASCII range (0 to 255).
2. Directory File: