Second day in #90DaysofDevops
Started with learning basic commands in Linux and using them to get a better hand of it.
Linux commands for =
Checking your present working directory = "pwd"
listing all the files or directories including hidden files = "ls -a"
Create a nested directory A/B/C/D/E = "mkdir -p A/B/C/D/E"
Other basic commands that are frequently used are -
pwd = gives present working directory
cd <directory> = change directory
cd .. = change directory to one step back
cd - = go to last working directory
mkdir = make new directory
ls -l = list the files in current directory with extra information
cat = display content of file of files.
#ShubhamLondhe #90DaysofDevops