DevOps (Day-2)
Table of contents
No headings in the article.
Basics Linux Commands
ls #->list file and directories.
ls-l #->list the contents.
ls-a #->list the files and directories included hidden files.
pwd #->print present working directory.
cd #->change directory.
cd- #->go to the last working directory.
cd.. #->change directory to one step back.
mkdir #->use to make directory.
mkdir A B C #->to make multiple directories.
mkdir -p A/B/C/D #->to make nested directory.
touch filename.txt #->to make file.
whoami #->to know your name.
vim #->text editor.
cp #->copy and paste file or directory.
rm #->remove file & directory.
mv #-> move file & directory.