1. pwd -------------------Present Working Directory path

  2. ls -------------------- To view directories and files in a folder

  3. ls -R ----------------- To view subdirectories of directories.

  4. ls -t

  5. ls -l ------------------To view permissions, last modified date, size in bytes of particular folder.

  6. ls -lt

  7. ls -la -----------------To view all items including hidden items.

  8. ls -lRa

  9. ls -lr -----------------shows in reverse order.

  10. ls -s ------------------To view size.

  11. ls *.js ----------------To view all the js files in that folder.

  12. ls Zoo* ----------------To view all the files with "Zoo" in its name.

  13. ls .. ------------------list all directories and folder.

  14. cd ---------------------------Go to

  15. cd .. ------------------------Go to previously directory.

  16. cd ../../ --------------------Go back twice.

  17. touch ------------------------To create a file. {touch a.js}

  18. cat --------------------------To view what is inside in a file. {cat a.js}