#Day2 of #90DaysofDevops #Challenge
Basic Linux Commands | present working <dir> | list of hidden<dir> | creating nested <dir>
Day 2 Task: Basics Linux command
Task: What is the Linux command to
- Check your present working directory.
$pwd
- List all the files or directories including hidden files.
$ls -a / $ls -la
- Create a nested directory A/B/C/D/E
$mkdir -p A/B/C/D/E