Skip to main content

How to change directory -- windows command ?

 BASIC COMMANDS

How to change the directory?

Fig 1.1  command prompt window

STEPS TO CHANGE THE DIRECTORY :

Step 1: Use the 'cd' command to change the directory

            
Fig 1.2 change directory using the command cd


Step 2: How to go back to the previous directory              

Fig 1.3 using cd .. command


Step 3: How to  go in multiple directories by a single command         

  
Fig 1.4 use a slash to enter multiple directories

Step 4: How to  go back from multiple directories by a single command   

        
Fig 1.5 use 2 dots before and after using slash 

Step 5: Tab command use   

  • Tab command help to redirect the correct name of the next document or directories.
  • you just need to write an initial letter and then tab button from keyboard press unless you get the one you are fetching for.

       



Comments

Popular posts from this blog

Intro to Containerisation

  Fig 1. Docker Engine and Application

TERMUX -- Setting up SSH Server

 Setting up SSH Server SSH Server Q. what is SSH ?😕  SSH stands for Secure shell  SSH provide remote access and provide communication between 2 devices. SSH is very useful connection for the remote access point of view. You can share file,folders, copy , paste,cut , remove and many more thing... Let's being with the practical on termux: Fig. Termux app on Android  Step 1: Update and Upgrade the package. Note: It is better whenever you're installing anything on termux or any other shell please update and upgrade the package for better performance and no error's 😉 apt update apt upgrade or apt upgrade -y Step 2: Install ssh Package pkg install openssh nmap -y Fig 2.1 Installing package openssh via nmap Step 3: Basic cmd to check userid and ipaddress whoami                    It provides the userid or username on the device it is just a random id/name.    2.  ifconfig           ...