Basic command lines for the developers
Command Line: an essential tool for software development. useful to execute a wide variety of programs on your computer. a tool for interacting with a computer using text (also known as a text interface). Unix Commands is a type of command that is used in Linux and macOS. Commands are instruction given to the computer into what is called a terminal. NOTE: 1. For Windows, we use POWERSHELL or GIT BASH. NOTE: 2. Here we will use the word directory (plural: directories) in place of folder often. They both are the same thing, and they’re used interchangeably. Be Motivated! Commands: $ start . (for windows) or $ open . (for Linux/macOS) — Opens File Explorer where we use GUI to manipulate the Files or Folders/Directories. $ pwd — stands for Print Working Directory. — On the command line, it is important to know the directory you’re working. Here comes pwd command to check that. — When you execute the pwd command, all the directories from the root directory to the current directory are displ...