Linux Essential Commands
- Today I will tackle essential Linux commands to enable the users to utilize the Linux terminal fluidly. - Each command I will list below has its own function, however, if you read the manual (man <command>) of each command, you will be able to discover more extra useful functions depending on what you what to achieve through it. cd | Change directory command allows the user to navigate through the file explorer. cd .. | This command takes you one directory back from the current directory you are in. Example : root@user $ cd /home/desktop/downloads root@user downloads $ cd .. root@user desktop $ pwd - Print Working Directory command allows users to see the path of the current working directory. Example: root@user $ pwd ...