SlideShare a Scribd company logo
UNIX Operating System
An Introduction
http://www.deepanshugahlaut.com/blog/introduction-to-unix-operating-system/
By:
Deepanshu Gahlaut
Web and Social Media Enthusiastic
www.deepanshugahlaut.com
Unix - An Introduction
Let’s Start With Basics ...
What is Operating System?
The Operating System is the System
S/W which acts as an interface
between user and computer’s H/W.
It acts as the brain of computer system
which controls all other component of
computer system.
Unix - An Introduction
Most Popular OS
Getting Started
Unix is a multiuser, multitasking OS from
AT & T that runs on a wide variety of
computer system from micro to super
computers. UNIX was developed in 1969
by Ken Thompson & Dennis Ritchie. Unix
was written in C language.
What is UNIX?
We use the term "Unix" in a collective
sense to refer to Unix, Unix-derived,
and Unix-like systems.
Image credit - tdrnetworks
UNIX Categories
There are three kinds of Unix System -
Genetic UNIX
Trademark or Branded UNIX
Functional UNIX
Those systems with a historical connection
to the AT&T codebase. For example -
BSD systems.
#1. Genetic UNIX
Systems such as Linux or Minix that
behave similarly to a UNIX system but
have no genetic or trademark
connection to the AT&T code base.
#2. Functional UNIX
These systems—largely commercial in
nature—have been determined by the
Open Group and are allowed to carry
the UNIX name.
For ex- System V , Apple Mac OS X 10.5
#3. Trademark or Branded UNIX
There are more than fifty flavors of UNIX in use
today. Brands and versions of UNIX that are in
common use are:
AIX from IBM
Solaris from SUN Microsystems
HP-UX and Tru64 from Hewlett Packard
UnixWare from Caldera
Linux and FreeBSD, which are open source
UNIX Historical Implementation
Unix - An Introduction
UNIX Features
Portability
Multi-user Capability
Multitasking Capability
Security
Built-in Networking
Programming Facility
The UNIX Toolkit
UNIX Structure
The architecture of UNIX can be divided into three
levels of functionality-
The lowest level is the kernel is the core of OS &
communicates directly to H/w.
 The next level is the shell, which acts as the interface
b/w user & kernel.
Kernel is represented by file /stand/unix or /unix
The highest level is utilities, or application programs
which provides utility functions.
The shell is represented by sh(Bourne Shell), csh(C shell),
ksh(Korn Shell), bash(Bash shell).
To know running shell use echo $shell
UNIX has a large family of powerful commands.
Some major commands are:
date, mkdir, cd, pwd, rmdir, ls, cp, mv, rm, cat, cal, who,
tput clear, man, passwd, path, ps, chmod, chown, more
etc.
UNIX Commands
date: displays the date and time.
ex: $ date [enter]
wed march 31 16: 22:40 IST 2005
cal: displays the calendar of any specific month or year.
ex: $ cal 2004 [enter]
who: displays the list of users that are currently logged into
system.
ex: $ who [enter]
Deepanshu console may 9 09:31
John pts/4 may 9 09:31
cat: creates a file.
ex: $ cat>filename [enter]
ls: displays the list of files and directories.
ex: $ date [enter]
wed march 31 16: 22:40 IST 2005
mkdir: creates directories.
ex: $ mkdir abc [enter]
rmdir: removes directories.
ex: $ rmdir abc [enter]
mv: perform two functions.
1. Renames a file or directory.
2. Moves a group of files to different directory.
ex: $ mv c1 b1 [enter]
renames c1 to b1
$ mv c1 c2 abc[enter]
moves c1, c2 to directory abc
cp: for copying one or more files.
ex: $ cp sourcefilename destinationfilename [enter]
rm: deletes one or more files.
ex: $ rm c1 c2 c3 [enter]
cat: display contents of file on screen.
ex: $ cat filename [enter]
tput clear: clears the screen.
ex: $ tput clear [enter]
pwd: display path of your present working directory.
ex: $ pwd [enter]
/home/sharma
cd: change the current working directory to another.
ex: $ cd ram [enter]
$pwd
/home/sharma/ram
Unix provides various general purpose
utilities having diverse functionality . Some
of them are:
cal, date, echo, bc, printf, passwd, man,
whatis, mailx etc.
General Purpose Utilities
bc: is the text based calculator.
ex: $ bc [enter]
12+5 [enter]
17 [ctrl+d]
echo: is used to print messages.
ex: $ echo Deepanshu [enter]
printf: is an alternative to echo.
ex: $ printf “Deepanshu” [enter]
mailx: is the universal mailer to send or receive mails.
Ex. $mailx Deepanshu [enter]
subject: Attention
call me now [ctrl-d]
Will send the mail to Deepanshu.
passwd: for changing password.
ex: $ passwd [enter]
(Current) UNIX password: ***** (12345)
New password: ***** (56789)
Re-enter: ***** (56789)
passwd(SYSTEM): password successfully changed.
man: is the help facility.
ex: $ man bc [enter]
Will give a page having complete documentation about
bc command including options, descriptions, usage etc.
UNIX File System
The UNIX file system contains following directories
within the different system files resides.
/bin: contains all commonly UNIX commands.
/etc: contains configuration files of system.
/dev: contains all device files.
/lib: contains all library files in binary form.
/home: different users are housed here.
/tmp: contains all temporary files.
/var: is the variable part of the system. Contains all your print job,
incoming & outgoing mails.
/stand: holds the commands usable only by System Administrator.
Administrator is the person who grants you the authority to
use the system. It is the super user that has vast powers
having access to everything.
The job of System Administration includes:
Maintaining Security by: passwd & set user id(SUID)
User Management by: groupadd, useradd & Userdel
Startup & Shutdown
Managing Disk Space by: df & du
Backup & Restore by: cpio & cpio-i
System Administration
Linux is a full UNIX clone created by Linus Torvalds when
he was a student at the university of Helsinki in 1991.It is
the free operating system based on UNIX. It is written in C
language.
Primary Advantages of Linux:
1. Its initial price is free.
2. Help is always available on internet.
3. It is portable to any Hardware platform.
4. It is scalable and secure.
Popular Linux Distribution :
Red Hat Enterprise Edition, Fedora Core, Debian, SuSE Linux
Linux’s Root in UNIX
Unix - An Introduction
The best thing about UNIX are:
 UNIX has greater built-in security and permissions
features than Windows.
 Mostly free or inexpensive open-source operating
systems, such as Linux and BSD.
 Multitasking & Multi-user Features.
 The Community & online support.
 Unix is more flexible and portable and can be
installed on many different types of machines.
Why UNIX?
Unix - An Introduction
 Today UNIX has joined the desktop market.
 On the server side, provides database and
trading services for companies.
 In creation of movies such as "Titanic",
"Shrek" and others.
 In real time environments such as flight
management, weapon control etc.
Applications of UNIX
LIKE THIS DECK?
Get In Touch!
Check Out Some of Other Slideshares..
Follow Me For More Great Content
References
Introduction To UNIX Operating System
Roundup – Top 50 UNIX Commands Every User Must Know
What is Unix Shell and What Does It Do?

More Related Content

PDF
Shell scripting
Manav Prasad
 
PDF
Shell scripting
Geeks Anonymes
 
PPTX
Operating systems unix
Achu dhan
 
PPTX
Introduction to Linux
Harish R
 
PPTX
Introduction to Unix
Nishant Munjal
 
PPTX
Unix ppt
Dr Rajiv Srivastava
 
PPT
Basic command ppt
Rohit Kumar
 
PPTX
Unix ppt
sudhir saurav
 
Shell scripting
Manav Prasad
 
Shell scripting
Geeks Anonymes
 
Operating systems unix
Achu dhan
 
Introduction to Linux
Harish R
 
Introduction to Unix
Nishant Munjal
 
Basic command ppt
Rohit Kumar
 
Unix ppt
sudhir saurav
 

What's hot (20)

ODP
Introduction to Shell script
Bhavesh Padharia
 
PPTX
Linux file system
Md. Tanvir Hossain
 
PPTX
Linux.ppt
onu9
 
PPTX
Linux operating system - Overview
Ashita Agrawal
 
PPT
Linux file system
Midaga Mengistu
 
PPT
Linux command ppt
kalyanineve
 
PDF
Linux systems - Linux Commands and Shell Scripting
Emertxe Information Technologies Pvt Ltd
 
PPT
Windows V/S Linux OS - Comparison
Hariharan Ganesan
 
PPTX
UNIX Operating System
Fatima Qayyum
 
PPT
Linux basic commands
MohanKumar Palanichamy
 
PPTX
Linux architecture
ICI Bucharest - roTLD
 
PPTX
Linux ppt
lincy21
 
PPT
Basic Unix
Rajesh Kumar
 
DOCX
linux file sysytem& input and output
MythiliA5
 
PPTX
Linux commands
Mannu Khani
 
PPT
Server configuration
Aisha Talat
 
PPTX
Linux commands
penetration Tester
 
PPTX
Bash shell scripting
VIKAS TIWARI
 
PDF
Linux Presentation
Naiyan Noor
 
Introduction to Shell script
Bhavesh Padharia
 
Linux file system
Md. Tanvir Hossain
 
Linux.ppt
onu9
 
Linux operating system - Overview
Ashita Agrawal
 
Linux file system
Midaga Mengistu
 
Linux command ppt
kalyanineve
 
Linux systems - Linux Commands and Shell Scripting
Emertxe Information Technologies Pvt Ltd
 
Windows V/S Linux OS - Comparison
Hariharan Ganesan
 
UNIX Operating System
Fatima Qayyum
 
Linux basic commands
MohanKumar Palanichamy
 
Linux architecture
ICI Bucharest - roTLD
 
Linux ppt
lincy21
 
Basic Unix
Rajesh Kumar
 
linux file sysytem& input and output
MythiliA5
 
Linux commands
Mannu Khani
 
Server configuration
Aisha Talat
 
Linux commands
penetration Tester
 
Bash shell scripting
VIKAS TIWARI
 
Linux Presentation
Naiyan Noor
 
Ad

Similar to Unix - An Introduction (20)

PPTX
Unix environment
Er Mittinpreet Singh
 
PPTX
Unix environment [autosaved]
Er Mittinpreet Singh
 
PPSX
Unix environment [autosaved]
Er Mittinpreet Singh
 
PPTX
linux and shell programming for information.pptx
PanjatcharamVg
 
PPTX
Programming and problem solving 3
sushruth kamarushi
 
PPTX
465330485-Unix-basic-commands-opera.pptx
VaidehiSuthar3
 
PPTX
Unix-basic-commands-operatingSystem.pptx
VaidehiSuthar3
 
PDF
Linux Notes-1.pdf
asif64436
 
DOC
84640411 study-of-unix-os
homeworkping3
 
PPTX
Introduction about linux
ABHISHEK KUMAR
 
PPTX
PPT of linux commands by Don Johnson.pptx
saurabhthege
 
PPT
Online Training in Unix Linux Shell Scripting in Hyderabad
Ravikumar Nandigam
 
PPTX
Unix_Introduction_BCA.pptx the very basi
Priyadarshini648418
 
DOCX
lec1.docx
ismailaboshatra
 
PPTX
CHAPTER 1 INTRODUCTION TO UNIX.pptx
MahiDivya
 
PPT
Intro tounix
Hamza Abdolateef
 
PPT
Intro to linux
Ravi Prakash Giri
 
PPT
Terminal basic-commands(Unix) -partI
Kedar Bhandari
 
PPSX
Linux: An Unbeaten Empire
Yogesh Sharma
 
Unix environment
Er Mittinpreet Singh
 
Unix environment [autosaved]
Er Mittinpreet Singh
 
Unix environment [autosaved]
Er Mittinpreet Singh
 
linux and shell programming for information.pptx
PanjatcharamVg
 
Programming and problem solving 3
sushruth kamarushi
 
465330485-Unix-basic-commands-opera.pptx
VaidehiSuthar3
 
Unix-basic-commands-operatingSystem.pptx
VaidehiSuthar3
 
Linux Notes-1.pdf
asif64436
 
84640411 study-of-unix-os
homeworkping3
 
Introduction about linux
ABHISHEK KUMAR
 
PPT of linux commands by Don Johnson.pptx
saurabhthege
 
Online Training in Unix Linux Shell Scripting in Hyderabad
Ravikumar Nandigam
 
Unix_Introduction_BCA.pptx the very basi
Priyadarshini648418
 
lec1.docx
ismailaboshatra
 
CHAPTER 1 INTRODUCTION TO UNIX.pptx
MahiDivya
 
Intro tounix
Hamza Abdolateef
 
Intro to linux
Ravi Prakash Giri
 
Terminal basic-commands(Unix) -partI
Kedar Bhandari
 
Linux: An Unbeaten Empire
Yogesh Sharma
 
Ad

More from Deepanshu Gahlaut (9)

PDF
10 Accounting Conferences You Can’t-Miss In 2018
Deepanshu Gahlaut
 
PDF
Bitcoin: What Accountants Need To Know
Deepanshu Gahlaut
 
PDF
5 Tips How To Stay Secure During Tax Season 2018
Deepanshu Gahlaut
 
PDF
5 Ways How Cloud Accounting Benefits Early-Stage Startups
Deepanshu Gahlaut
 
PDF
6 Must Have Technologies For Every Accounting Professional
Deepanshu Gahlaut
 
PPTX
Marketing 101: What Every Accounting Firm Should Know?
Deepanshu Gahlaut
 
PDF
Cloud Accounting
Deepanshu Gahlaut
 
PDF
Green Computing
Deepanshu Gahlaut
 
PPTX
Top 10 SMB Technology Trends For 2014
Deepanshu Gahlaut
 
10 Accounting Conferences You Can’t-Miss In 2018
Deepanshu Gahlaut
 
Bitcoin: What Accountants Need To Know
Deepanshu Gahlaut
 
5 Tips How To Stay Secure During Tax Season 2018
Deepanshu Gahlaut
 
5 Ways How Cloud Accounting Benefits Early-Stage Startups
Deepanshu Gahlaut
 
6 Must Have Technologies For Every Accounting Professional
Deepanshu Gahlaut
 
Marketing 101: What Every Accounting Firm Should Know?
Deepanshu Gahlaut
 
Cloud Accounting
Deepanshu Gahlaut
 
Green Computing
Deepanshu Gahlaut
 
Top 10 SMB Technology Trends For 2014
Deepanshu Gahlaut
 

Recently uploaded (20)

PPTX
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
PPTX
Coupa-Overview _Assumptions presentation
annapureddyn
 
PPTX
Stamford - Community User Group Leaders_ Agentblazer Status, AI Sustainabilit...
Amol Dixit
 
PDF
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
PDF
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PPTX
Smart Infrastructure and Automation through IoT Sensors
Rejig Digital
 
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
PDF
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
PPTX
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PDF
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PDF
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
PDF
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
PDF
DevOps & Developer Experience Summer BBQ
AUGNYC
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
Coupa-Overview _Assumptions presentation
annapureddyn
 
Stamford - Community User Group Leaders_ Agentblazer Status, AI Sustainabilit...
Amol Dixit
 
Unlocking the Future- AI Agents Meet Oracle Database 23ai - AIOUG Yatra 2025.pdf
Sandesh Rao
 
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
Smart Infrastructure and Automation through IoT Sensors
Rejig Digital
 
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
Using Anchore and DefectDojo to Stand Up Your DevSecOps Function
Anchore
 
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
Oracle AI Vector Search- Getting Started and what's new in 2025- AIOUG Yatra ...
Sandesh Rao
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
DevOps & Developer Experience Summer BBQ
AUGNYC
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 

Unix - An Introduction

  • 1. UNIX Operating System An Introduction http://www.deepanshugahlaut.com/blog/introduction-to-unix-operating-system/ By: Deepanshu Gahlaut Web and Social Media Enthusiastic www.deepanshugahlaut.com
  • 3. Let’s Start With Basics ...
  • 4. What is Operating System? The Operating System is the System S/W which acts as an interface between user and computer’s H/W. It acts as the brain of computer system which controls all other component of computer system.
  • 8. Unix is a multiuser, multitasking OS from AT & T that runs on a wide variety of computer system from micro to super computers. UNIX was developed in 1969 by Ken Thompson & Dennis Ritchie. Unix was written in C language. What is UNIX?
  • 9. We use the term "Unix" in a collective sense to refer to Unix, Unix-derived, and Unix-like systems.
  • 10. Image credit - tdrnetworks
  • 11. UNIX Categories There are three kinds of Unix System - Genetic UNIX Trademark or Branded UNIX Functional UNIX
  • 12. Those systems with a historical connection to the AT&T codebase. For example - BSD systems. #1. Genetic UNIX
  • 13. Systems such as Linux or Minix that behave similarly to a UNIX system but have no genetic or trademark connection to the AT&T code base. #2. Functional UNIX
  • 14. These systems—largely commercial in nature—have been determined by the Open Group and are allowed to carry the UNIX name. For ex- System V , Apple Mac OS X 10.5 #3. Trademark or Branded UNIX
  • 15. There are more than fifty flavors of UNIX in use today. Brands and versions of UNIX that are in common use are: AIX from IBM Solaris from SUN Microsystems HP-UX and Tru64 from Hewlett Packard UnixWare from Caldera Linux and FreeBSD, which are open source UNIX Historical Implementation
  • 17. UNIX Features Portability Multi-user Capability Multitasking Capability Security Built-in Networking Programming Facility The UNIX Toolkit
  • 19. The architecture of UNIX can be divided into three levels of functionality- The lowest level is the kernel is the core of OS & communicates directly to H/w.  The next level is the shell, which acts as the interface b/w user & kernel. Kernel is represented by file /stand/unix or /unix The highest level is utilities, or application programs which provides utility functions. The shell is represented by sh(Bourne Shell), csh(C shell), ksh(Korn Shell), bash(Bash shell). To know running shell use echo $shell
  • 20. UNIX has a large family of powerful commands. Some major commands are: date, mkdir, cd, pwd, rmdir, ls, cp, mv, rm, cat, cal, who, tput clear, man, passwd, path, ps, chmod, chown, more etc. UNIX Commands
  • 21. date: displays the date and time. ex: $ date [enter] wed march 31 16: 22:40 IST 2005 cal: displays the calendar of any specific month or year. ex: $ cal 2004 [enter] who: displays the list of users that are currently logged into system. ex: $ who [enter] Deepanshu console may 9 09:31 John pts/4 may 9 09:31 cat: creates a file. ex: $ cat>filename [enter]
  • 22. ls: displays the list of files and directories. ex: $ date [enter] wed march 31 16: 22:40 IST 2005 mkdir: creates directories. ex: $ mkdir abc [enter] rmdir: removes directories. ex: $ rmdir abc [enter] mv: perform two functions. 1. Renames a file or directory. 2. Moves a group of files to different directory. ex: $ mv c1 b1 [enter] renames c1 to b1 $ mv c1 c2 abc[enter] moves c1, c2 to directory abc
  • 23. cp: for copying one or more files. ex: $ cp sourcefilename destinationfilename [enter] rm: deletes one or more files. ex: $ rm c1 c2 c3 [enter] cat: display contents of file on screen. ex: $ cat filename [enter] tput clear: clears the screen. ex: $ tput clear [enter] pwd: display path of your present working directory. ex: $ pwd [enter] /home/sharma cd: change the current working directory to another. ex: $ cd ram [enter] $pwd /home/sharma/ram
  • 24. Unix provides various general purpose utilities having diverse functionality . Some of them are: cal, date, echo, bc, printf, passwd, man, whatis, mailx etc. General Purpose Utilities
  • 25. bc: is the text based calculator. ex: $ bc [enter] 12+5 [enter] 17 [ctrl+d] echo: is used to print messages. ex: $ echo Deepanshu [enter] printf: is an alternative to echo. ex: $ printf “Deepanshu” [enter] mailx: is the universal mailer to send or receive mails. Ex. $mailx Deepanshu [enter] subject: Attention call me now [ctrl-d] Will send the mail to Deepanshu.
  • 26. passwd: for changing password. ex: $ passwd [enter] (Current) UNIX password: ***** (12345) New password: ***** (56789) Re-enter: ***** (56789) passwd(SYSTEM): password successfully changed. man: is the help facility. ex: $ man bc [enter] Will give a page having complete documentation about bc command including options, descriptions, usage etc.
  • 28. The UNIX file system contains following directories within the different system files resides. /bin: contains all commonly UNIX commands. /etc: contains configuration files of system. /dev: contains all device files. /lib: contains all library files in binary form. /home: different users are housed here. /tmp: contains all temporary files. /var: is the variable part of the system. Contains all your print job, incoming & outgoing mails. /stand: holds the commands usable only by System Administrator.
  • 29. Administrator is the person who grants you the authority to use the system. It is the super user that has vast powers having access to everything. The job of System Administration includes: Maintaining Security by: passwd & set user id(SUID) User Management by: groupadd, useradd & Userdel Startup & Shutdown Managing Disk Space by: df & du Backup & Restore by: cpio & cpio-i System Administration
  • 30. Linux is a full UNIX clone created by Linus Torvalds when he was a student at the university of Helsinki in 1991.It is the free operating system based on UNIX. It is written in C language. Primary Advantages of Linux: 1. Its initial price is free. 2. Help is always available on internet. 3. It is portable to any Hardware platform. 4. It is scalable and secure. Popular Linux Distribution : Red Hat Enterprise Edition, Fedora Core, Debian, SuSE Linux Linux’s Root in UNIX
  • 32. The best thing about UNIX are:  UNIX has greater built-in security and permissions features than Windows.  Mostly free or inexpensive open-source operating systems, such as Linux and BSD.  Multitasking & Multi-user Features.  The Community & online support.  Unix is more flexible and portable and can be installed on many different types of machines. Why UNIX?
  • 34.  Today UNIX has joined the desktop market.  On the server side, provides database and trading services for companies.  In creation of movies such as "Titanic", "Shrek" and others.  In real time environments such as flight management, weapon control etc. Applications of UNIX
  • 35. LIKE THIS DECK? Get In Touch! Check Out Some of Other Slideshares.. Follow Me For More Great Content
  • 36. References Introduction To UNIX Operating System Roundup – Top 50 UNIX Commands Every User Must Know What is Unix Shell and What Does It Do?