Created: 2023-01-20 13:58
Status: #concept
Subject: Programming DevOps
Tags: Bash Command Line Interface Directory

PATH

Definition

A string of Characters reprsenting the address of a Directory, separated by / in a hierarchal structure.

Absolute Path

Specifies a location from the Root Directory of the system:

/home/luzefiru/

Relative Path

Specifies a location from the Current Working Directory of the terminal:

./../bin

References