export is a command in the Bash shell language. When used to set a variable, as in your example, the variable (PATH) will be visible (“exported to”) any subprocesses started
from that instance of Bash. Without the export command, the variable will not exist
in the subprocess.