Day2:- Basic Linux command

Day2:- Basic Linux command

Task

  1. Check your present working directory.

  2. List all the files or directories including hidden files.

  3. Create a nested directory A/B/C/D/E

Solution

Check the present directory

pwd

List all files or directories including hidden files

ls -a

Create a nested directory A/B/C/D/E

mkdir -p A/B/C/D/E