Day 2 Task: Basics linux command
Utsav Gohel
1 min read
Task: What is the linux command to
- Check your present working directory.
pwd
-> present working directory
- List all the files or directories including hidden files.
ls -a
-> list command will list all files including hidden files
- Create a nested directory A/B/C/D/E
mkdir -p A/B/C/D/E
-> p is used to create parent directory
0
Subscribe to my newsletter
Read articles from Utsav Gohel directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by