Linux and Unix cd command tutorial with examples
Command cd stands for Change Directory. You can change directory or move from one directory to another directory by using cd command. Syntax:
1 | $ cd [directory name] [press enter] |
Example: pwd command display the absolute path name of current directory. To see the current directory absolute path press pwd command on terminal.
1 2 | $ pwd [press enter] /home/it |
We are currently in “ it ’ … Read more