Basic Unix Commands | Get Started with Unix for Absolute Beginners
- soubhik001
- Mar 4, 2022
- 1 min read
Updated: Mar 7, 2022
What is Unix ?
Unix is an operating system which was derived from Original AT&T. And in this video we will discuss the command line of unix.
Why Learning Unix is important ?
UNIX is widely used today for Internet servers, workstations, and mainframe computers. Most of the companies today uses servers with an Unix operating system to run and maintain their applications. So if you are in an IT field, learning Unix will give you an upper-hand to know your servers and in case your are a devOps or solution engineer then learning these commands will be part of your daily bread.
Directory - A Folder that normally contains files.
File - Files contains data.
Basic Unix Commands :
pwd - present working directory
ls - list files in current directory
mkdir - make directory
cd - change directory
cd - change to previous directory
cat - concatenate and print files
cp - copy
mv - move
rm - remove
head - display first lines of a file
tail - display last part of a file
vi - a programmer's text editor
du - display disk usage
df - display free disk
echo - write argument to standard output
clear - clear the terminal screen
man - format and display the on-line manual pages

Commentaires