FILE SYSTEM IN LINUX

PATH

PATH is an environmental variable in Linux and other Unix like operating systems that tells the shell which directories to search for executable files 

Environmental variables are a class of variables that determines the shell how to behave as the user works at the command line

How to view your path?

echo $PATH

How to set your path?

export PATH=$PATH:/usr/bin/yourpath

Popular Tags: