CLI (Command Line Interface)
The CLI is a text-based interface used to interact with the computer system.
It allows users to type commands to perform specific tasks.
Basic Commands
Navigation
pwd: Print the current working directory.
Example:
$ pwd
ls: List files and directories in the current directory.
Example:
$ ls
cd: Change the directory.
Example:
$ cd project_folder
File and Directory Operations
touch: Create an empty file.
Example:
$ touch index.html
mkdir: Create a directory.
Example:
The CLI is a text-based interface used to interact with the computer system.
It allows users to type commands to perform specific tasks.
Basic Commands
Navigation
pwd: Print the current working directory.
Example:
$ pwd
ls: List files and directories in the current directory.
Example:
$ ls
cd: Change the directory.
Example:
$ cd project_folder
File and Directory Operations
touch: Create an empty file.
Example:
$ touch index.html
mkdir: Create a directory.
Example: