Changes between Version 4 and Version 5 of cypress/WorkingOnClusters
- Timestamp:
- 08/19/19 12:30:31 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/WorkingOnClusters
v4 v5 141 141 }}} 142 142 143 You can see that the two are nearly identical. The only difference being that our .bash_profile modifies the PATH environment variable.143 You can see that the two are nearly identical. Aside from their reference to different directories (/etc vs ~), the only other difference is that our .bash_profile modifies and exports the PATH environment variable. 144 144 145 145 There is much confusion over the role that each of these files play. When you login to a system, the .bash_profile file is executed UPON LOGIN. The .bashrc file modifies the default environment when connected without login, for example when executing commands remotely using SSH. Note that changes made in the .bashrc file will be reflected in the .bash_profile file but not vise versa.