cd command
To move from current working directory to another directory, use this command. Syntax: cd [option] DIR_NAME / DIR_PATH Some use of this command is as follows. 1. cd DIR_NAME : Useful to go to the directory present inside the directory Example:- The directory named king is our current working directory, many sub directories and files are present inside this directory. If we want to go to the directory named android then we will use cd android command. 2. cd ABSLUTE_PATH :- To go to a directory, you can go to that directory with the help of the absolute path of that directory. The absolute path of a directory relative to the root directory is called. example :- You can go from king directory to android directory with the help of absolute path. $ cd /home/king/android 3. cd RELATIVE_PATH :- If you want to go from current working directory to any other directory then path of destination directory with respect to ...