Command Line Course Learning
New Year and New Beginning.
Thanks to Progate Learning and Test Tribe Community for providing platform to learn.
Today, I have learned about Command Line commands.
The command line is a tool that allows you to perform various tasks by giving commands to the computer.
Below are the commands and Description.
Thanks to Progate Learning and Test Tribe Community for providing platform to learn.
Today, I have learned about Command Line commands.
The command line is a tool that allows you to perform various tasks by giving commands to the computer.
Below are the commands and Description.
touch
|
Creating an empty file
|
cat
|
Displaying the contents of the file
|
mkdir
|
Creating a Directory
|
cd
|
Change Directory
|
pwd
|
Print Working Directory
|
ls
|
Displaying the Contents of Directory
|
cd ..
|
Moving to Parent Directory
|
mv
|
Moving the files and directory
|
mv
|
Renaming the files and directory
|
cp
|
Copying the file
|
cp -r
|
Copying the directory to new directory
|
rm
|
Removing the file
|
rm -r
|
Remove directories and their contents recursively.
|