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