What is this "export" phrase at the start? export is a command (more precisely it's a Bash builtin, i.e. it's not an executable present in PATH, it's a command that Bash has built-in in itself). Is it exporting the data to be available for Bash? export sets the environment variable on the left side of the assignment to the value on the right side of the assignment; such environment variable is ...